summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/thoop2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/thoop2.h')
-rw-r--r--src/mame/includes/thoop2.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/thoop2.h b/src/mame/includes/thoop2.h
index 5ff44c9c3b6..5fe75e84493 100644
--- a/src/mame/includes/thoop2.h
+++ b/src/mame/includes/thoop2.h
@@ -16,9 +16,9 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- required_shared_ptr<UINT16> m_videoram;
- required_shared_ptr<UINT16> m_vregs;
- required_shared_ptr<UINT16> m_spriteram;
+ required_shared_ptr<uint16_t> m_videoram;
+ required_shared_ptr<uint16_t> m_vregs;
+ required_shared_ptr<uint16_t> m_spriteram;
int m_sprite_count[5];
std::unique_ptr<int[]> m_sprite_table[5];
@@ -34,7 +34,7 @@ public:
TILE_GET_INFO_MEMBER(get_tile_info_screen0);
TILE_GET_INFO_MEMBER(get_tile_info_screen1);
- UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void sort_sprites();
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, int pri);
};