summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/snk68.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/snk68.h')
-rw-r--r--src/mame/includes/snk68.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/snk68.h b/src/mame/includes/snk68.h
index e79febfe760..4d87fd0e0ef 100644
--- a/src/mame/includes/snk68.h
+++ b/src/mame/includes/snk68.h
@@ -29,13 +29,13 @@ public:
required_device<snk68_spr_device> m_sprites;
required_device<generic_latch_8_device> m_soundlatch;
- required_shared_ptr<UINT16> m_pow_fg_videoram;
- required_shared_ptr<UINT16> m_spriteram;
+ required_shared_ptr<uint16_t> m_pow_fg_videoram;
+ required_shared_ptr<uint16_t> m_spriteram;
- UINT8 m_invert_controls;
+ uint8_t m_invert_controls;
bool m_sprite_flip_axis;
tilemap_t *m_fg_tilemap;
- UINT32 m_fg_tile_offset;
+ uint32_t m_fg_tile_offset;
// common
DECLARE_WRITE16_MEMBER(sound_w);
@@ -65,7 +65,7 @@ public:
DECLARE_VIDEO_START(searchar);
void common_video_start();
- 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 tile_callback_pow(int &tile, int& fx, int& fy, int& region);
void tile_callback_notpow(int &tile, int& fx, int& fy, int& region);