mirror of https://github.com/PCSX2/pcsx2.git
Fix for Tekken Tag Issue 271
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1379 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
1845c3cc38
commit
43dbbb050f
|
@ -535,6 +535,12 @@ void gifMFIFOInterrupt()
|
|||
mfifocycles = 0;
|
||||
if(Path3progress == 2) psHu32(GIF_STAT)&= ~(GIF_STAT_APATH3 | GIF_STAT_OPH); // OPH=0 | APATH=0
|
||||
|
||||
if((spr0->chcr & 0x100) && spr0->qwc == 0)
|
||||
{
|
||||
spr0->chcr &= ~0x100;
|
||||
hwDmacIrq(DMAC_FROM_SPR);
|
||||
}
|
||||
|
||||
if (!(gif->chcr & 0x100)) {
|
||||
Console::WriteLn("WTF GIFMFIFO");
|
||||
cpuRegs.interrupt &= ~(1 << 11);
|
||||
|
@ -548,12 +554,6 @@ void gifMFIFOInterrupt()
|
|||
return;
|
||||
}
|
||||
|
||||
if((spr0->chcr & 0x100) && spr0->qwc == 0)
|
||||
{
|
||||
spr0->chcr &= ~0x100;
|
||||
hwDmacIrq(DMAC_FROM_SPR);
|
||||
}
|
||||
|
||||
if(gifstate != GIF_STATE_STALL) {
|
||||
if(gifqwc <= 0) {
|
||||
//Console::WriteLn("Empty");
|
||||
|
|
Loading…
Reference in New Issue