mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
c9be136946
commit
b987309f38
|
@ -980,7 +980,7 @@ void recDIVhelper1(int regd, int regt)
|
||||||
x86SetJ32(ajmp32);
|
x86SetJ32(ajmp32);
|
||||||
|
|
||||||
/*--- Normal Divide ---*/
|
/*--- 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);
|
SSE_DIVSS_XMM_to_XMM(regd, regt);
|
||||||
|
|
||||||
ClampValues2(regd);
|
ClampValues2(regd);
|
||||||
|
@ -993,7 +993,7 @@ void recDIVhelper1(int regd, int regt)
|
||||||
// Doesn't sets flags
|
// Doesn't sets flags
|
||||||
void recDIVhelper2(int regd, int regt)
|
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);
|
SSE_DIVSS_XMM_to_XMM(regd, regt);
|
||||||
ClampValues2(regd);
|
ClampValues2(regd);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue