diff options
Diffstat (limited to 'src/mame/drivers/techno.cpp')
-rw-r--r-- | src/mame/drivers/techno.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/techno.cpp b/src/mame/drivers/techno.cpp index a5722c273d0..cf1c13c24e5 100644 --- a/src/mame/drivers/techno.cpp +++ b/src/mame/drivers/techno.cpp @@ -42,9 +42,9 @@ public: INTERRUPT_GEN_MEMBER(techno_intgen); private: bool m_digwait; - UINT8 m_keyrow; - UINT16 m_digit; - UINT8 m_vector; + uint8_t m_keyrow; + uint16_t m_digit; + uint8_t m_vector; virtual void machine_reset() override; required_device<cpu_device> m_maincpu; required_ioport_array<8> m_switch; |