summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tokyocop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tokyocop.cpp')
-rw-r--r--src/mame/drivers/tokyocop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/tokyocop.cpp b/src/mame/drivers/tokyocop.cpp
index 4f28338400d..79858537a41 100644
--- a/src/mame/drivers/tokyocop.cpp
+++ b/src/mame/drivers/tokyocop.cpp
@@ -34,7 +34,7 @@ public:
m_maincpu(*this, "maincpu")
{ }
- 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);
protected:
@@ -50,7 +50,7 @@ void tokyocop_state::video_start()
{
}
-UINT32 tokyocop_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t tokyocop_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
return 0;
}