summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/funkball.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/funkball.cpp')
-rw-r--r--src/mame/drivers/funkball.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/funkball.cpp b/src/mame/drivers/funkball.cpp
index 449b2269a1a..5500f61e757 100644
--- a/src/mame/drivers/funkball.cpp
+++ b/src/mame/drivers/funkball.cpp
@@ -154,7 +154,9 @@ uint8_t funkball_state::timer_r(offs_t offset)
{
if (offset == 0)
{
- m_latched_timer = machine().time().as_ticks(20000);
+ // exact frequency unknown, but the code checks against 32539 for a timeout
+ // so guessing that could be it
+ m_latched_timer = machine().time().as_ticks(32539);
return m_latched_timer >> 8;
}