mirror of https://github.com/PCSX2/pcsx2.git
fixed a typo from r416 (code should never be run anyways, but just in case :p)
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@418 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
parent
629f628300
commit
09e87e81c7
|
@ -784,7 +784,7 @@ void recC_EQ_xmm(int info)
|
|||
default:
|
||||
SysPrintf("recC_EQ_xmm: Default\n");
|
||||
tempReg = _allocX86reg(-1, X86TYPE_TEMP, 0, 0);
|
||||
if (tempReg <= 0) {SysPrintf("FPU: DIV Allocation Error!\n"); tempReg = EAX;}
|
||||
if (tempReg < 0) {SysPrintf("FPU: DIV Allocation Error!\n"); tempReg = EAX;}
|
||||
MOV32MtoR(tempReg, (uptr)&fpuRegs.fpr[_Fs_]);
|
||||
CMP32MtoR(tempReg, (uptr)&fpuRegs.fpr[_Ft_]);
|
||||
|
||||
|
@ -941,7 +941,7 @@ void recC_LT_xmm(int info)
|
|||
default:
|
||||
SysPrintf("recC_LT_xmm: Default\n");
|
||||
tempReg = _allocX86reg(-1, X86TYPE_TEMP, 0, 0);
|
||||
if (tempReg <= 0) {SysPrintf("FPU: DIV Allocation Error!\n"); tempReg = EAX;}
|
||||
if (tempReg < 0) {SysPrintf("FPU: DIV Allocation Error!\n"); tempReg = EAX;}
|
||||
MOV32MtoR(tempReg, (uptr)&fpuRegs.fpr[_Fs_]);
|
||||
CMP32MtoR(tempReg, (uptr)&fpuRegs.fpr[_Ft_]);
|
||||
|
||||
|
|
Loading…
Reference in New Issue