summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/fuukifg2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/fuukifg2.cpp')
-rw-r--r--src/mame/drivers/fuukifg2.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/fuukifg2.cpp b/src/mame/drivers/fuukifg2.cpp
index 37a090df5c7..6898e4be8c3 100644
--- a/src/mame/drivers/fuukifg2.cpp
+++ b/src/mame/drivers/fuukifg2.cpp
@@ -63,8 +63,8 @@ To Do:
WRITE16_MEMBER(fuuki16_state::vregs_w)
{
- UINT16 old_data = m_vregs[offset];
- UINT16 new_data = COMBINE_DATA(&m_vregs[offset]);
+ uint16_t old_data = m_vregs[offset];
+ uint16_t new_data = COMBINE_DATA(&m_vregs[offset]);
if ((offset == 0x1c/2) && old_data != new_data)
{
const rectangle &visarea = m_screen->visible_area();
@@ -419,7 +419,7 @@ void fuuki16_state::device_timer(emu_timer &timer, device_timer_id id, int param
void fuuki16_state::machine_start()
{
- UINT8 *ROM = memregion("audiocpu")->base();
+ uint8_t *ROM = memregion("audiocpu")->base();
membank("bank1")->configure_entries(0, 3, &ROM[0x10000], 0x8000);