summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/suna16.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/suna16.h')
-rw-r--r--src/mame/includes/suna16.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/suna16.h b/src/mame/includes/suna16.h
index a458c06f914..e3fb7be1561 100644
--- a/src/mame/includes/suna16.h
+++ b/src/mame/includes/suna16.h
@@ -27,16 +27,16 @@ public:
required_device<palette_device> m_palette;
required_device<generic_latch_8_device> m_soundlatch;
- required_shared_ptr<UINT16> m_spriteram;
- optional_shared_ptr<UINT16> m_spriteram2;
+ required_shared_ptr<uint16_t> m_spriteram;
+ optional_shared_ptr<uint16_t> m_spriteram2;
optional_memory_bank m_bank1;
optional_memory_bank m_bank2;
- std::unique_ptr<UINT16[]> m_paletteram;
+ std::unique_ptr<uint16_t[]> m_paletteram;
int m_color_bank;
- UINT8 m_prot;
+ uint8_t m_prot;
// common
DECLARE_WRITE16_MEMBER(soundlatch_w);
@@ -71,7 +71,7 @@ public:
DECLARE_MACHINE_START(uballoon);
DECLARE_MACHINE_RESET(uballoon);
- UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_bestbest(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, UINT16 *sprites, int gfx);
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_bestbest(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, uint16_t *sprites, int gfx);
};