summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/tourvis.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tourvis.cpp')
-rw-r--r--src/mame/drivers/tourvis.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/tourvis.cpp b/src/mame/drivers/tourvis.cpp
index 3601855de92..3966a61b465 100644
--- a/src/mame/drivers/tourvis.cpp
+++ b/src/mame/drivers/tourvis.cpp
@@ -310,7 +310,7 @@ public:
DECLARE_WRITE_LINE_MEMBER(tourvision_timer_out);
required_device<cpu_device> m_subcpu;
required_device<generic_slot_device> m_cart;
- UINT32 m_rom_size;
+ uint32_t m_rom_size;
DECLARE_DEVICE_IMAGE_LOAD_MEMBER(tourvision_cart);
};
@@ -321,8 +321,8 @@ DEVICE_IMAGE_LOAD_MEMBER( tourvision_state, tourvision_cart )
m_cart->rom_alloc(m_rom_size, GENERIC_ROM8_WIDTH, ENDIANNESS_LITTLE);
m_cart->common_load_rom(m_cart->get_rom_base(), m_rom_size, "rom");
- UINT8* rgn = memregion("maincpu")->base();
- UINT8* base = m_cart->get_rom_base();
+ uint8_t* rgn = memregion("maincpu")->base();
+ uint8_t* base = m_cart->get_rom_base();
if (m_rom_size == 0x0c0000)
{