summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/pcktgal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/pcktgal.h')
-rw-r--r--src/mame/includes/pcktgal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/pcktgal.h b/src/mame/includes/pcktgal.h
index bfb3db2b39a..2e7a76d7d38 100644
--- a/src/mame/includes/pcktgal.h
+++ b/src/mame/includes/pcktgal.h
@@ -27,7 +27,7 @@ public:
required_device<palette_device> m_palette;
required_device<generic_latch_8_device> m_soundlatch;
- required_shared_ptr<UINT8> m_spriteram;
+ required_shared_ptr<uint8_t> m_spriteram;
int m_msm5205next;
int m_toggle;
@@ -43,7 +43,7 @@ public:
DECLARE_PALETTE_INIT(pcktgal);
virtual void machine_start() override;
- UINT32 screen_update_pcktgal(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_pcktgalb(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_pcktgal(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_pcktgalb(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect);
};