summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/dolphunk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/dolphunk.cpp')
-rw-r--r--src/mame/drivers/dolphunk.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/dolphunk.cpp b/src/mame/drivers/dolphunk.cpp
index c670612a507..eaa053ce26c 100644
--- a/src/mame/drivers/dolphunk.cpp
+++ b/src/mame/drivers/dolphunk.cpp
@@ -105,8 +105,8 @@ public:
DECLARE_WRITE8_MEMBER(port06_w);
TIMER_DEVICE_CALLBACK_MEMBER(dauphin_c);
private:
- UINT8 m_cass_data;
- UINT8 m_last_key;
+ uint8_t m_cass_data;
+ uint8_t m_last_key;
bool m_cass_state;
bool m_cassold;
bool m_speaker_state;
@@ -138,7 +138,7 @@ WRITE8_MEMBER( dauphin_state::port06_w )
READ8_MEMBER( dauphin_state::port07_r )
{
- UINT8 keyin, i, data = 0x40;
+ uint8_t keyin, i, data = 0x40;
keyin = ioport("X0")->read();
if (keyin != 0xff)