summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/sealy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/sealy.cpp')
-rw-r--r--src/mame/drivers/sealy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/sealy.cpp b/src/mame/drivers/sealy.cpp
index fbdc2ed03cd..85bd14c25af 100644
--- a/src/mame/drivers/sealy.cpp
+++ b/src/mame/drivers/sealy.cpp
@@ -49,7 +49,7 @@ public:
// screen updates
DECLARE_PALETTE_INIT(sealy);
- UINT32 screen_update_sealy(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_sealy(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
};
@@ -59,7 +59,7 @@ PALETTE_INIT_MEMBER(sealy_state,sealy)
// palette.set_pen_color(i,pal5bit(i >> 5),pal5bit(i >> 10),pal5bit(i >> 0));
}
-UINT32 sealy_state::screen_update_sealy(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
+uint32_t sealy_state::screen_update_sealy(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
{
bitmap.fill(m_palette->black_pen(), cliprect);
return 0;