From fcc3076351aeb7c0191f2820df1a53475576dac7 Mon Sep 17 00:00:00 2001 From: cam900 Date: Wed, 22 May 2019 10:08:23 +0900 Subject: audio/jaguar.cpp : Correct timer related to DSP --- src/mame/audio/jaguar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3