summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/quakeat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/quakeat.cpp')
-rw-r--r--src/mame/drivers/quakeat.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/quakeat.cpp b/src/mame/drivers/quakeat.cpp
index 49c8ea6ab42..b8878f28b92 100644
--- a/src/mame/drivers/quakeat.cpp
+++ b/src/mame/drivers/quakeat.cpp
@@ -74,7 +74,7 @@ public:
virtual void machine_start() override;
virtual void video_start() override;
- UINT32 screen_update_quake(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_quake(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
};
@@ -82,7 +82,7 @@ void quakeat_state::video_start()
{
}
-UINT32 quakeat_state::screen_update_quake(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t quakeat_state::screen_update_quake(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
return 0;
}