From bd2813ccb449661e26bbbe6a59d31faa4c368d3f Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Thu, 4 Feb 2021 21:29:22 +0100 Subject: tumbleb.cpp: fixed regression --- src/mame/drivers/tumbleb.cpp | 1 - src/mame/includes/tumbleb.h | 3 ++- 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); -- cgit v1.2.3