Skip to content

Commit

Permalink
SPU2: Temporary CDDA fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziemas authored and refractionpcsx2 committed Oct 20, 2023
1 parent e2d4e38 commit 09574b3
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions pcsx2/SPU2/ReadInput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 09574b3

Please sign in to comment.