mirror of https://github.com/PCSX2/pcsx2.git
SPU2-X: Little mistake in input area IRQ code.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4745 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
94d6aaf4bb
commit
86b80f2603
|
@ -115,7 +115,7 @@ StereoOut32 V_Core::ReadInput()
|
||||||
{
|
{
|
||||||
for (int i=0; i<2; i++)
|
for (int i=0; i<2; i++)
|
||||||
if (Cores[i].IRQEnable && 0x2000 + (Index << 10) + InputPosRead == (Cores[i].IRQA & 0xfffffdff))
|
if (Cores[i].IRQEnable && 0x2000 + (Index << 10) + InputPosRead == (Cores[i].IRQA & 0xfffffdff))
|
||||||
SetIrqCall(Index);
|
SetIrqCall(i);
|
||||||
|
|
||||||
//retval = StereoOut32(
|
//retval = StereoOut32(
|
||||||
// (s32)ADMATempBuffer[InputPosRead],
|
// (s32)ADMATempBuffer[InputPosRead],
|
||||||
|
|
Loading…
Reference in New Issue