summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2021-02-04 21:29:22 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2021-02-04 21:29:22 +0100
commitbd2813ccb449661e26bbbe6a59d31faa4c368d3f (patch)
tree3425f32d506f159a5ee9304d8d27e19ee0a8a902
parent5633b3a20c0662a804ceeefb534ec2417f73d12e (diff)
tumbleb.cpp: fixed regression
-rw-r--r--src/mame/drivers/tumbleb.cpp1
-rw-r--r--src/mame/includes/tumbleb.h3
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/tumbleb.cpp b/src/mame/drivers/tumbleb.cpp
index 018fb21d3f3..c699d394bcc 100644
--- a/src/mame/drivers/tumbleb.cpp
+++ b/src/mame/drivers/tumbleb.cpp
@@ -2115,7 +2115,6 @@ MACHINE_RESET_MEMBER(tumbleb_state,tumbleb)
m_music_is_playing = 0;
m_tilebank = 0;
memset(m_control_0, 0, sizeof(m_control_0));
- m_protbase = 0;
m_semicom_prot_offset = 0;
}
diff --git a/src/mame/includes/tumbleb.h b/src/mame/includes/tumbleb.h
index 98f77bac346..c35f4230b99 100644
--- a/src/mame/includes/tumbleb.h
+++ b/src/mame/includes/tumbleb.h
@@ -33,7 +33,8 @@ public:
m_palette(*this, "palette"),
m_sprgen(*this, "spritegen"),
m_screen(*this, "screen"),
- m_soundlatch(*this, "soundlatch")
+ m_soundlatch(*this, "soundlatch"),
+ m_protbase(0)
{ }
void tumblepb(machine_config &config);