summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/scramble.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/scramble.cpp')
-rw-r--r--src/mame/machine/scramble.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/scramble.cpp b/src/mame/machine/scramble.cpp
index af175512649..8027984f599 100644
--- a/src/mame/machine/scramble.cpp
+++ b/src/mame/machine/scramble.cpp
@@ -15,20 +15,20 @@
#include "includes/scramble.h"
-void scramble_state::machine_reset_scramble()
+MACHINE_RESET_MEMBER(scramble_state,scramble)
{
- machine_reset_galaxold();
+ MACHINE_RESET_CALL_MEMBER(galaxold);
if (m_audiocpu != nullptr)
sh_init();
}
-void scramble_state::machine_reset_explorer()
+MACHINE_RESET_MEMBER(scramble_state,explorer)
{
uint8_t *RAM = memregion("maincpu")->base();
RAM[0x47ff] = 0; /* If not set, it doesn't reset after the 1st time */
- machine_reset_galaxold();
+ MACHINE_RESET_CALL_MEMBER(galaxold);
}