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:
cottonvibes 2008-12-12 10:29:24 +00:00 committed by Gregory Hainaut
parent 629f628300
commit 09e87e81c7
1 changed files with 2 additions and 2 deletions

View File

@ -784,7 +784,7 @@ void recC_EQ_xmm(int info)
default: default:
SysPrintf("recC_EQ_xmm: Default\n"); SysPrintf("recC_EQ_xmm: Default\n");
tempReg = _allocX86reg(-1, X86TYPE_TEMP, 0, 0); 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_]); MOV32MtoR(tempReg, (uptr)&fpuRegs.fpr[_Fs_]);
CMP32MtoR(tempReg, (uptr)&fpuRegs.fpr[_Ft_]); CMP32MtoR(tempReg, (uptr)&fpuRegs.fpr[_Ft_]);
@ -941,7 +941,7 @@ void recC_LT_xmm(int info)
default: default:
SysPrintf("recC_LT_xmm: Default\n"); SysPrintf("recC_LT_xmm: Default\n");
tempReg = _allocX86reg(-1, X86TYPE_TEMP, 0, 0); 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_]); MOV32MtoR(tempReg, (uptr)&fpuRegs.fpr[_Fs_]);
CMP32MtoR(tempReg, (uptr)&fpuRegs.fpr[_Ft_]); CMP32MtoR(tempReg, (uptr)&fpuRegs.fpr[_Ft_]);