summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/bingoman.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/bingoman.cpp')
-rw-r--r--src/mame/drivers/bingoman.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/bingoman.cpp b/src/mame/drivers/bingoman.cpp
index f9551bcfd67..3817029ef34 100644
--- a/src/mame/drivers/bingoman.cpp
+++ b/src/mame/drivers/bingoman.cpp
@@ -255,7 +255,7 @@ public:
required_device<cpu_device> m_maincpu;
// screen updates
- 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);
DECLARE_PALETTE_INIT(bingoman);
protected:
// driver_device overrides
@@ -269,7 +269,7 @@ void bingoman_state::video_start()
{
}
-UINT32 bingoman_state::screen_update( screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect )
+uint32_t bingoman_state::screen_update( screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect )
{
return 0;
}