forgot to change this :O

git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@103 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
cottonvibes 2008-09-08 05:39:12 +00:00 committed by Gregory Hainaut
parent c9be136946
commit b987309f38
1 changed files with 2 additions and 2 deletions

View File

@ -980,7 +980,7 @@ void recDIVhelper1(int regd, int regt)
x86SetJ32(ajmp32);
/*--- Normal Divide ---*/
if (CHECK_FPU_EXTRA_OVERFLOW && (!CHECK_FPUCLAMPHACK)) { fpuFloat(regd); fpuFloat(regt); }
if (CHECK_FPU_EXTRA_OVERFLOW) { fpuFloat(regd); fpuFloat(regt); }
SSE_DIVSS_XMM_to_XMM(regd, regt);
ClampValues2(regd);
@ -993,7 +993,7 @@ void recDIVhelper1(int regd, int regt)
// Doesn't sets flags
void recDIVhelper2(int regd, int regt)
{
if (CHECK_FPU_EXTRA_OVERFLOW && (!CHECK_FPUCLAMPHACK)) { fpuFloat(regd); fpuFloat(regt); }
if (CHECK_FPU_EXTRA_OVERFLOW) { fpuFloat(regd); fpuFloat(regt); }
SSE_DIVSS_XMM_to_XMM(regd, regt);
ClampValues2(regd);
}