summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gameplan.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gameplan.cpp')
-rw-r--r--src/mame/drivers/gameplan.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mame/drivers/gameplan.cpp b/src/mame/drivers/gameplan.cpp
index a2460fb8e8d..d6e55864a45 100644
--- a/src/mame/drivers/gameplan.cpp
+++ b/src/mame/drivers/gameplan.cpp
@@ -938,6 +938,7 @@ void gameplan_state::machine_start()
save_item(NAME(m_video_y));
save_item(NAME(m_video_command));
save_item(NAME(m_video_data));
+ save_item(NAME(m_video_previous));
}
@@ -948,6 +949,7 @@ void gameplan_state::machine_reset()
m_video_y = 0;
m_video_command = 0;
m_video_data = 0;
+ m_video_previous = 0;
}
void gameplan_state::gameplan(machine_config &config)
@@ -998,6 +1000,9 @@ void gameplan_state::leprechn(machine_config &config)
{
gameplan(config);
m_maincpu->set_clock(LEPRECHAUN_MAIN_CPU_CLOCK);
+ m_via_0->set_clock(LEPRECHAUN_MAIN_CPU_CLOCK);
+ m_via_1->set_clock(LEPRECHAUN_MAIN_CPU_CLOCK);
+ m_via_2->set_clock(LEPRECHAUN_MAIN_CPU_CLOCK);
/* basic machine hardware */
m_audiocpu->set_addrmap(AS_PROGRAM, &gameplan_state::leprechn_audio_map);