summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/galpanic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/galpanic.h')
-rw-r--r--src/mame/includes/galpanic.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/galpanic.h b/src/mame/includes/galpanic.h
index 0ab503e6742..a89502da913 100644
--- a/src/mame/includes/galpanic.h
+++ b/src/mame/includes/galpanic.h
@@ -17,8 +17,8 @@ public:
{ }
required_device<cpu_device> m_maincpu;
- required_shared_ptr<UINT16> m_bgvideoram;
- required_shared_ptr<UINT16> m_fgvideoram;
+ required_shared_ptr<uint16_t> m_bgvideoram;
+ required_shared_ptr<uint16_t> m_fgvideoram;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
@@ -34,7 +34,7 @@ public:
virtual void video_start() override;
DECLARE_PALETTE_INIT(galpanic);
- 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);
void screen_eof(screen_device &screen, bool state);
TIMER_DEVICE_CALLBACK_MEMBER(scanline);
void draw_fgbitmap(bitmap_ind16 &bitmap, const rectangle &cliprect);