(MESS) coleco: added missing input-related variables to save states, which should now work. [Fabio Priuli]

This commit is contained in:
Fabio Priuli 2013-05-26 10:08:52 +00:00
parent 3476c84442
commit adb8846f1f

View File

@ -262,6 +262,13 @@ void coleco_state::machine_start()
m_joy_d7_state[port] = 0; m_joy_d7_state[port] = 0;
m_joy_analog_state[port] = 0; m_joy_analog_state[port] = 0;
} }
save_item(NAME(m_joy_mode));
save_item(NAME(m_last_nmi_state));
save_item(NAME(m_joy_irq_state));
save_item(NAME(m_joy_d7_state));
save_item(NAME(m_joy_analog_state));
save_item(NAME(m_joy_analog_reload));
} }
void coleco_state::machine_reset() void coleco_state::machine_reset()