diff options
Diffstat (limited to 'src/mame/includes/namcos1.h')
-rw-r--r-- | src/mame/includes/namcos1.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/mame/includes/namcos1.h b/src/mame/includes/namcos1.h index 55c2dfe927b..fc2967446d7 100644 --- a/src/mame/includes/namcos1.h +++ b/src/mame/includes/namcos1.h @@ -96,25 +96,25 @@ private: required_ioport m_io_dipsw; required_device<ls157_device> m_dsw_sel; - int m_key_id; - int m_key_reg; - int m_key_rng; - int m_key_swap4_arg; - int m_key_swap4; - int m_key_bottom4; - int m_key_top4; - u32 m_key_quotient; - u32 m_key_reminder; - u32 m_key_numerator_high_word; - u8 m_key[8]; - int m_mcu_patch_data; - int m_reset; - int m_input_count; - int m_strobe; - int m_strobe_count; - int m_stored_input[2]; - bool m_copy_sprites; - u8 m_drawmode_table[16]; + int m_key_id = 0; + int m_key_reg = 0; + int m_key_rng = 0; + int m_key_swap4_arg = 0; + int m_key_swap4 = 0; + int m_key_bottom4 = 0; + int m_key_top4 = 0; + u32 m_key_quotient = 0; + u32 m_key_reminder = 0; + u32 m_key_numerator_high_word = 0; + u8 m_key[8]{}; + int m_mcu_patch_data = 0; + int m_reset = 0; + int m_input_count = 0; + int m_strobe = 0; + int m_strobe_count = 0; + int m_stored_input[2]{}; + bool m_copy_sprites = false; + u8 m_drawmode_table[16]{}; DECLARE_WRITE_LINE_MEMBER(subres_w); void audiocpu_irq_ack_w(u8 data); |