SPU2-X: Refix Zero: Akai Chou (and others fixed in r4735 probably). It was a slip in the dead voice code.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4755 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
sudonim1@gmail.com 2011-06-22 11:42:56 +00:00
parent 629a6826d2
commit 9e34391cde
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ static __forceinline void GetNextDataDummy(V_Core& thiscore, uint voiceidx)
vc.LoopFlags = *GetMemPtr(vc.NextA&0xFFFF8) >> 8; // grab loop flags from the upper byte.
if ((vc.LoopFlags & XAFLAG_LOOP_START) && !vc.LoopMode)
vc.LoopStartA = vc.NextA;
vc.LoopStartA = vc.NextA & 0xFFFF8;
vc.SCurrent = 0;
}