summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gstriker.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gstriker.h')
-rw-r--r--src/mame/includes/gstriker.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/includes/gstriker.h b/src/mame/includes/gstriker.h
index 68e9bbdbc66..cbc07047908 100644
--- a/src/mame/includes/gstriker.h
+++ b/src/mame/includes/gstriker.h
@@ -41,16 +41,16 @@ public:
required_device<palette_device> m_palette;
required_device<generic_latch_8_device> m_soundlatch;
- required_shared_ptr<UINT16> m_CG10103_m_vram;
- required_shared_ptr<UINT16> m_work_ram;
- required_shared_ptr<UINT16> m_mixerregs1;
- required_shared_ptr<UINT16> m_mixerregs2;
+ required_shared_ptr<uint16_t> m_CG10103_m_vram;
+ required_shared_ptr<uint16_t> m_work_ram;
+ required_shared_ptr<uint16_t> m_mixerregs1;
+ required_shared_ptr<uint16_t> m_mixerregs2;
- UINT16 m_dmmy_8f_ret;
+ uint16_t m_dmmy_8f_ret;
int m_pending_command;
int m_gametype;
- UINT16 m_mcu_data;
- UINT16 m_prot_reg[2];
+ uint16_t m_mcu_data;
+ uint16_t m_prot_reg[2];
// common
DECLARE_READ16_MEMBER(dmmy_8f);
@@ -74,7 +74,7 @@ public:
DECLARE_DRIVER_INIT(vgoalsoc);
DECLARE_DRIVER_INIT(twrldc94);
- 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 mcu_init();
};