summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/quizshow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/quizshow.cpp')
-rw-r--r--src/mame/drivers/quizshow.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mame/drivers/quizshow.cpp b/src/mame/drivers/quizshow.cpp
index ef239b6e12d..bda7174559b 100644
--- a/src/mame/drivers/quizshow.cpp
+++ b/src/mame/drivers/quizshow.cpp
@@ -29,6 +29,8 @@ TODO:
#include "quizshow.lh"
+namespace {
+
static constexpr XTAL MASTER_CLOCK = 12.096_MHz_XTAL;
static constexpr XTAL PIXEL_CLOCK = MASTER_CLOCK / 2;
@@ -395,6 +397,7 @@ void quizshow_state::machine_reset()
{
m_category_enable = 0;
m_tape_head_pos = 0;
+ m_clocks = 0;
}
void quizshow_state::quizshow(machine_config &config)
@@ -471,5 +474,7 @@ void quizshow_state::init_quizshow()
}
}
+} // Anonymous namespace
+
GAMEL( 1976, quizshow, 0, quizshow, quizshow, quizshow_state, init_quizshow, ROT0, "Atari (Kee Games)", "Quiz Show", MACHINE_NOT_WORKING, layout_quizshow )