From 94ba90082bf117542dc530059efa7184c258af82 Mon Sep 17 00:00:00 2001 From: Brandon Wright Date: Thu, 3 Nov 2016 19:17:50 -0500 Subject: [PATCH] Revert input rate change. Causes desync. --- apu/apu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apu/apu.cpp b/apu/apu.cpp index 69f54046..0babbd12 100644 --- a/apu/apu.cpp +++ b/apu/apu.cpp @@ -456,7 +456,7 @@ static void UpdatePlaybackRate (void) if (Settings.MSU1) { - time_ratio = 44100.0 / Settings.SoundPlaybackRate * (Settings.SoundInputRate / 32040.5); + time_ratio = 44100.0 / Settings.SoundPlaybackRate; msu::resampler->time_ratio(time_ratio); } }