- 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:
ramapcsx2 2010-02-17 21:12:02 +00:00
parent 8d7971466d
commit f6119e02f0
1 changed files with 6 additions and 2 deletions

View File

@ -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