From 09574b3937c1a00702bd978a80fb4c7220bd3591 Mon Sep 17 00:00:00 2001 From: Ziemas Date: Fri, 20 Oct 2023 16:20:29 +0200 Subject: [PATCH] SPU2: Temporary CDDA fix --- pcsx2/SPU2/ReadInput.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pcsx2/SPU2/ReadInput.cpp b/pcsx2/SPU2/ReadInput.cpp index 687082f2ed185..e5fea14d93fdf 100644 --- a/pcsx2/SPU2/ReadInput.cpp +++ b/pcsx2/SPU2/ReadInput.cpp @@ -43,12 +43,8 @@ StereoOut32 V_Core::ReadInput_HiFi() if (Index == 1) { - // CDDA Mode: - // give 30 bit data (SndOut downsamples the rest of the way) - // HACKFIX: 28 bits seems better according to rama. I should take some time and do some - // bitcounting on this one. --air - retval.Left >>= 4; - retval.Right >>= 4; + retval.Left >>= 16; + retval.Right >>= 16; } // Simulate MADR increase, GTA VC tracks the MADR address for calculating a certain point in the buffer