summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/polyplay.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/polyplay.h')
-rw-r--r--src/mame/includes/polyplay.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/polyplay.h b/src/mame/includes/polyplay.h
index cc0b31abb6f..983f98c8098 100644
--- a/src/mame/includes/polyplay.h
+++ b/src/mame/includes/polyplay.h
@@ -16,8 +16,8 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_characterram;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_characterram;
required_device<cpu_device> m_maincpu;
required_device<samples_device> m_samples;
@@ -28,7 +28,7 @@ public:
int m_freq2;
int m_channel_playing1;
int m_channel_playing2;
- INT16 m_backgroundwave[SAMPLE_LENGTH];
+ int16_t m_backgroundwave[SAMPLE_LENGTH];
int m_prescale1;
int m_prescale2;
int m_channel1_active;
@@ -50,7 +50,7 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
DECLARE_PALETTE_INIT(polyplay);
- UINT32 screen_update_polyplay(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_polyplay(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(periodic_interrupt);
INTERRUPT_GEN_MEMBER(coin_interrupt);
TIMER_DEVICE_CALLBACK_MEMBER(polyplay_timer_callback);