From 62c90d576e769675b4f49e9628c166c585af9b69 Mon Sep 17 00:00:00 2001 From: goyuken Date: Sun, 9 Feb 2014 03:05:04 +0000 Subject: [PATCH] improve pal gens sound quality in clot throttle modfe --- BizHawk.Emulation.Common/Sound/Utilities/BufferedAsync.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Common/Sound/Utilities/BufferedAsync.cs b/BizHawk.Emulation.Common/Sound/Utilities/BufferedAsync.cs index dc9c453dad..ab1c427e0d 100644 --- a/BizHawk.Emulation.Common/Sound/Utilities/BufferedAsync.cs +++ b/BizHawk.Emulation.Common/Sound/Utilities/BufferedAsync.cs @@ -44,7 +44,7 @@ namespace BizHawk.Emulation.Common public void RecalculateMagic(double framerate) { // ceiling instead of floor here is very important (magic) - SamplesInOneFrame = (int)System.Math.Ceiling((88200.0 / framerate)); + SamplesInOneFrame = 2 * (int)System.Math.Ceiling((44100.0 / framerate)); //TargetExtraSamples = ;// complete guess }