summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/odyssey.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/odyssey.cpp')
-rw-r--r--src/mame/drivers/odyssey.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/odyssey.cpp b/src/mame/drivers/odyssey.cpp
index 628fe45caa9..312bd67e69c 100644
--- a/src/mame/drivers/odyssey.cpp
+++ b/src/mame/drivers/odyssey.cpp
@@ -85,7 +85,7 @@ private:
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
- uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ u32 screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
void odyssey_map(address_map &map);
};
@@ -93,7 +93,7 @@ void odyssey_state::video_start()
{
}
-uint32_t odyssey_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
+u32 odyssey_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
{
return 0;
}