summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/gime.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/gime.cpp')
-rw-r--r--src/mame/video/gime.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/video/gime.cpp b/src/mame/video/gime.cpp
index c4dcf5a24b0..47745cd433d 100644
--- a/src/mame/video/gime.cpp
+++ b/src/mame/video/gime.cpp
@@ -77,6 +77,8 @@
ARKANOID: Abuses TIMER = 0 for ball ricochet sounds
+ POP*STAR PILOT: Timer is synchronized with scanlines.
+
**********************************************************************/
@@ -480,12 +482,12 @@ void gime_device::reset_timer(void)
if (timer_type() == GIME_TIMER_63USEC)
{
// master clock divided by 8, divided by 228, divided by 2
- m_gime_clock_timer->adjust(attotime::from_hz(clock()) * 3648 * m_timer_value);
+ m_gime_clock_timer->adjust(attotime::from_hz(clock()) * 3648 * m_timer_value / 2);
}
else
{
// master clock divided by 8, divided by 2
- m_gime_clock_timer->adjust(attotime::from_hz(clock()) * 16 * m_timer_value);
+ m_gime_clock_timer->adjust(attotime::from_hz(clock()) * 16 * m_timer_value / 2);
}
}
else