diff options
Diffstat (limited to 'src/devices/machine/f3853.h')
-rw-r--r-- | src/devices/machine/f3853.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/f3853.h b/src/devices/machine/f3853.h index 0654d58e8e9..f7d6adb3b5c 100644 --- a/src/devices/machine/f3853.h +++ b/src/devices/machine/f3853.h @@ -159,9 +159,9 @@ protected: virtual void timer_start(uint8_t value) override; - u8 m_timer_count = 0; - u8 m_timer_modulo = 0; - bool m_timer_start = false; + u8 m_timer_count; + u8 m_timer_modulo; + bool m_timer_start; }; class f38t56_device : public f3856_device |