diff options
Diffstat (limited to 'src/mame/drivers/tispellb.cpp')
-rw-r--r-- | src/mame/drivers/tispellb.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/tispellb.cpp b/src/mame/drivers/tispellb.cpp index 4d1198f1d93..40936b78e14 100644 --- a/src/mame/drivers/tispellb.cpp +++ b/src/mame/drivers/tispellb.cpp @@ -76,9 +76,9 @@ public: optional_device<cpu_device> m_subcpu; optional_device<tms6100_device> m_tms6100; - UINT8 m_rev1_ctl; - UINT16 m_sub_o; - UINT16 m_sub_r; + uint8_t m_rev1_ctl; + uint16_t m_sub_o; + uint16_t m_sub_r; virtual DECLARE_INPUT_CHANGED_MEMBER(power_button) override; void power_off(); @@ -140,7 +140,7 @@ void tispellb_state::power_off() void tispellb_state::prepare_display() { // almost same as snspell - UINT16 gridmask = vfd_filament_on() ? 0xffff : 0x8000; + uint16_t gridmask = vfd_filament_on() ? 0xffff : 0x8000; set_display_segmask(0xff, 0x3fff); display_matrix(16+1, 16, m_plate | 1<<16, m_grid & gridmask); } |