mirror of
https://github.com/holub/mame
synced 2025-07-04 01:18:59 +03:00
funkball: Found a reference to 32539 in the code that looks to be a reasonable guess at the timer frequency.
This commit is contained in:
parent
5ef2143fca
commit
2e70f1e430
@ -154,7 +154,9 @@ uint8_t funkball_state::timer_r(offs_t offset)
|
|||||||
{
|
{
|
||||||
if (offset == 0)
|
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;
|
return m_latched_timer >> 8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user