diff options
Diffstat (limited to 'src/mame/drivers/spdheat.cpp')
-rw-r--r-- | src/mame/drivers/spdheat.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/spdheat.cpp b/src/mame/drivers/spdheat.cpp index fcc818c108d..6ec86de0e24 100644 --- a/src/mame/drivers/spdheat.cpp +++ b/src/mame/drivers/spdheat.cpp @@ -37,7 +37,7 @@ static constexpr XTAL FM_CLOCK = SOUND_CLOCK / 2; void spdheat_state::machine_start() { - save_pointer(NAME(m_sound_data), sizeof(m_sound_data)); + save_item(NAME(m_sound_data)); save_item(NAME(m_sound_status)); save_item(NAME(m_sub_data)); save_item(NAME(m_sub_status)); @@ -854,5 +854,5 @@ ROM_END * *************************************/ -GAME( 1985, spdheat, 0, spdheat, spdheat, spdheat_state, empty_init, ROT0, "Taito Corporation", "Super Dead Heat (World)", 0 ) -GAME( 1985, spdheatj, spdheat, spdheat, spdheatj, spdheat_state, empty_init, ROT0, "Taito Corporation", "Super Dead Heat (Japan)", 0 ) +GAME( 1985, spdheat, 0, spdheat, spdheat, spdheat_state, empty_init, ROT0, "Taito Corporation", "Super Dead Heat (World)", MACHINE_SUPPORTS_SAVE ) +GAME( 1985, spdheatj, spdheat, spdheat, spdheatj, spdheat_state, empty_init, ROT0, "Taito Corporation", "Super Dead Heat (Japan)", MACHINE_SUPPORTS_SAVE ) |