summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/quasar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/quasar.h')
-rw-r--r--src/mame/includes/quasar.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/quasar.h b/src/mame/includes/quasar.h
index 3c8569c4626..77827a677ea 100644
--- a/src/mame/includes/quasar.h
+++ b/src/mame/includes/quasar.h
@@ -14,10 +14,10 @@ public:
quasar_state(const machine_config &mconfig, device_type type, const char *tag)
: cvs_state(mconfig, type, tag) { }
- std::unique_ptr<UINT8[]> m_effectram;
- UINT8 m_effectcontrol;
- UINT8 m_page;
- UINT8 m_io_page;
+ std::unique_ptr<uint8_t[]> m_effectram;
+ uint8_t m_effectcontrol;
+ uint8_t m_page;
+ uint8_t m_io_page;
DECLARE_WRITE8_MEMBER(video_page_select_w);
DECLARE_WRITE8_MEMBER(io_page_select_w);
DECLARE_WRITE8_MEMBER(quasar_video_w);
@@ -30,6 +30,6 @@ public:
DECLARE_MACHINE_RESET(quasar);
DECLARE_VIDEO_START(quasar);
DECLARE_PALETTE_INIT(quasar);
- UINT32 screen_update_quasar(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_quasar(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(quasar_interrupt);
};