Small bug in the new VIF timing i forgot to fix :P

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@455 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
refraction 2009-02-08 09:38:17 +00:00
parent fbff495952
commit b1600e57f7
1 changed files with 2 additions and 2 deletions

View File

@ -1200,7 +1200,7 @@ __forceinline void vif0TransInterrupt() {
//vif1ch->qwc = 0; //vif1ch->qwc = 0;
//vif1Regs->stat|= VIF1_STAT_VIS; //Set the Tag Interrupt flag of VIF1_STAT //vif1Regs->stat|= VIF1_STAT_VIS; //Set the Tag Interrupt flag of VIF1_STAT
vif0.done = 1; vif0.done = 1;
return; //End Transfer //return; //End Transfer
} }
vif0Interrupt(); vif0Interrupt();
} }
@ -2130,7 +2130,7 @@ __forceinline void vif1TransInterrupt() {
//vif1ch->qwc = 0; //vif1ch->qwc = 0;
//vif1Regs->stat|= VIF1_STAT_VIS; //Set the Tag Interrupt flag of VIF1_STAT //vif1Regs->stat|= VIF1_STAT_VIS; //Set the Tag Interrupt flag of VIF1_STAT
vif1.done = 1; vif1.done = 1;
return; //End Transfer //return; //End Transfer
} }
vif1Interrupt(); vif1Interrupt();
} }