minor change

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@543 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
cottonvibes 2009-02-20 03:12:27 +00:00
parent 35d2328dd1
commit 32a8bef206
1 changed files with 0 additions and 6 deletions

View File

@ -1285,7 +1285,6 @@ void recVUMI_FSEQ( VURegs *VU, int info )
CMP16ItoR(EAX, imm);
SETE8R(ftreg);
AND32ItoR(ftreg, 0x1);
}
//------------------------------------------------------------------
@ -1382,7 +1381,6 @@ void recVUMI_FMEQ( VURegs *VU, int info )
CMP16MtoR(fsreg, VU_VI_ADDR(REG_MAC_FLAG, 1));
SETE8R(ftreg);
}
AND32ItoR(ftreg, 0x1);
}
//------------------------------------------------------------------
@ -1430,7 +1428,6 @@ void recVUMI_FCAND( VURegs *VU, int info )
AND32ItoR( EAX, VU->code & 0xFFFFFF );
SETNZ8R(ftreg);
AND32ItoR(ftreg, 0x1);
}
//------------------------------------------------------------------
@ -1448,7 +1445,6 @@ void recVUMI_FCEQ( VURegs *VU, int info )
CMP32ItoR( EAX, VU->code&0xffffff );
SETE8R(ftreg);
AND32ItoR(ftreg, 0x1);
}
//------------------------------------------------------------------
@ -1470,8 +1466,6 @@ void recVUMI_FCOR( VURegs *VU, int info )
SETNZ8R(ftreg);
else
SETZ8R(ftreg);
AND32ItoR(ftreg, 0x1);
}
//------------------------------------------------------------------