From c0cc6cc7bd0385011b72f8b6a18637ed8c0d9cea Mon Sep 17 00:00:00 2001 From: AJR Date: Thu, 7 Nov 2019 17:39:55 -0500 Subject: gamekin3: Run CPU 33% faster as suggested by timer initialization --- src/mame/drivers/gameking.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mame/drivers/gameking.cpp b/src/mame/drivers/gameking.cpp index 2f856321c51..e7d03acc3a4 100644 --- a/src/mame/drivers/gameking.cpp +++ b/src/mame/drivers/gameking.cpp @@ -311,6 +311,7 @@ void gameking_state::gameking1(machine_config &config) void gameking_state::gameking3(machine_config &config) { gameking(config); + m_maincpu->set_clock(8000000); m_maincpu->set_addrmap(AS_DATA, &gameking_state::gameking3_mem); screen_device &screen(*subdevice("screen")); -- cgit v1.2.3