mame/audio/cage.cpp: added one missing variable to state saving, should address MT07724

This commit is contained in:
Ivan Vangelista 2020-08-15 15:16:51 +02:00
parent c721e728f4
commit 120ae6a73b

View File

@ -163,6 +163,7 @@ void atari_cage_device::device_start()
save_item(NAME(m_timer_enabled)); save_item(NAME(m_timer_enabled));
save_item(NAME(m_from_main)); save_item(NAME(m_from_main));
save_item(NAME(m_control)); save_item(NAME(m_control));
save_item(NAME(m_tms32031_io_regs));
} }