summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/simple_st0016.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/simple_st0016.cpp')
-rw-r--r--src/mame/drivers/simple_st0016.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/simple_st0016.cpp b/src/mame/drivers/simple_st0016.cpp
index 1a2024c85ad..87ec5f3e308 100644
--- a/src/mame/drivers/simple_st0016.cpp
+++ b/src/mame/drivers/simple_st0016.cpp
@@ -106,7 +106,7 @@ ADDRESS_MAP_END
*
*************************************/
-static UINT32 latches[8];
+static uint32_t latches[8];
READ32_MEMBER(st0016_state::latch32_r)
{
@@ -456,7 +456,7 @@ TIMER_DEVICE_CALLBACK_MEMBER(st0016_state::st0016_int)
*
*************************************/
-UINT32 st0016_state::screen_update_st0016(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t st0016_state::screen_update_st0016(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
return m_maincpu->update(screen,bitmap,cliprect);
}