mirror of https://github.com/PCSX2/pcsx2.git
SPU2-X:
- Don't delay the adma irq callbacks, call them directly. Should finally fix all those sound dropouts that only happened with this plugin :) git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2601 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
8d7971466d
commit
f6119e02f0
|
@ -90,7 +90,9 @@ StereoOut32 V_Core::ReadInput_HiFi()
|
|||
}
|
||||
}
|
||||
InputDataLeft = 0;
|
||||
DMAICounter = 1;
|
||||
//DMAICounter = 1;
|
||||
if(Index == 0) { if(dma4callback) dma4callback(); }
|
||||
else { if(dma7callback) dma7callback(); }
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
@ -149,7 +151,9 @@ StereoOut32 V_Core::ReadInput()
|
|||
}
|
||||
|
||||
InputDataLeft = 0;
|
||||
DMAICounter = 1;
|
||||
//DMAICounter = 1;
|
||||
if(Index == 0) { if(dma4callback) dma4callback(); }
|
||||
else { if(dma7callback) dma7callback(); }
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue