From b117bb8f58938edf3da1e348ca5ff32fa68b279e Mon Sep 17 00:00:00 2001 From: Nadia Holmquist Pedersen Date: Fri, 8 Mar 2024 16:59:31 +0100 Subject: that should be 0x8000 --- src/SPU.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/SPU.cpp b/src/SPU.cpp index 4e6fb13..69c0b9d 100644 --- a/src/SPU.cpp +++ b/src/SPU.cpp @@ -659,13 +659,13 @@ s32 SPUChannel::Run() case AudioInterpolation::SNESGaussian: { // Avoid clipping (from fullsnes) - #define CLAMP(s) (std::clamp((s) >> 1, -0x3FFA, 0x3FF8)) +#define CLAMP(s) (std::clamp((s) >> 1, -0x3FFA, 0x3FF8)) s32 out = (InterpSNESGauss[0x0FF - samplepos] * CLAMP(PrevSample[2]) >> 10); out = out + ((InterpSNESGauss[0x1FF - samplepos] * CLAMP(PrevSample[1])) >> 10); out = out + ((InterpSNESGauss[0x100 + samplepos] * CLAMP(PrevSample[0])) >> 10); out = out + ((InterpSNESGauss[0x000 + samplepos] * CLAMP(val)) >> 10); - val = std::clamp(out, -0x7FFF, 0x7FFF); - #undef CLAMP + val = std::clamp(out, -0x8000, 0x7FFF); +#undef CLAMP break; } -- cgit v1.2.3