summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/wms.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/wms.cpp')
-rw-r--r--src/mame/drivers/wms.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/wms.cpp b/src/mame/drivers/wms.cpp
index 21f56ca3a3d..c196ba7559a 100644
--- a/src/mame/drivers/wms.cpp
+++ b/src/mame/drivers/wms.cpp
@@ -95,7 +95,7 @@ public:
DECLARE_DRIVER_INIT(wms);
DECLARE_READ8_MEMBER(test_r);
- UINT32 screen_update_wms(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_wms(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
protected:
@@ -105,7 +105,7 @@ protected:
private:
};
-UINT32 wms_state::screen_update_wms(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t wms_state::screen_update_wms(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
return 0;
}