mirror of https://github.com/PCSX2/pcsx2.git
SPU2-X: We had two SPDIF modes reversed. I don't really understand the SPDIF modes but these are the bits the library sets. Fixes Gradius 3+4, issue 925.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4771 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
8c781f9845
commit
367ab01a60
|
@ -442,7 +442,7 @@ __forceinline void UpdateSpdifMode()
|
||||||
if(Spdif.Out&SPDIF_OUT_BYPASS)
|
if(Spdif.Out&SPDIF_OUT_BYPASS)
|
||||||
{
|
{
|
||||||
PlayMode=2;
|
PlayMode=2;
|
||||||
if(Spdif.Mode&SPDIF_MODE_BYPASS_BITSTREAM)
|
if(!(Spdif.Mode&SPDIF_MODE_BYPASS_BITSTREAM))
|
||||||
PlayMode=4; //bitstream bypass
|
PlayMode=4; //bitstream bypass
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue