summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author cam900 <dbtlrchl@naver.com>2019-05-22 10:08:23 +0900
committer GitHub <noreply@github.com>2019-05-22 10:08:23 +0900
commitfcc3076351aeb7c0191f2820df1a53475576dac7 (patch)
treeb5883c422ae7325911cd4149d9a1025cf51cbaba
parent27f66693c5d1263453d625a2d4a17f99b6766443 (diff)
audio/jaguar.cpp : Correct timer related to DSP
-rw-r--r--src/mame/audio/jaguar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/audio/jaguar.cpp b/src/mame/audio/jaguar.cpp
index eab65cc884c..7a775e9cf03 100644
--- a/src/mame/audio/jaguar.cpp
+++ b/src/mame/audio/jaguar.cpp
@@ -353,7 +353,7 @@ WRITE32_MEMBER( jaguar_state::serial_w )
logerror("Unexpected write to SMODE = %X\n", data);
if ((data & 0x3f) == 0x15)
{
- attotime rate = attotime::from_hz(26000000) * (32 * 2 * (m_serial_frequency + 1));
+ attotime rate = attotime::from_hz(m_dsp->clock()) * (32 * 2 * (m_serial_frequency + 1));
m_serial_timer->adjust(rate, 0, rate);
}
break;