summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2019-11-07 20:39:26 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2019-11-07 20:39:26 +0100
commit7203696d533c01dbdfe4edda01d41923d1d70fbe (patch)
treea23a203c1b98b488e7d4df36b53444f1bbe029c0
parentae2cad64f4744b13a9e776c087da227dc13d9104 (diff)
spdheat.cpp: enabled save state support (nw)
-rw-r--r--src/mame/drivers/spdheat.cpp6
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 )