mirror of https://github.com/PCSX2/pcsx2.git
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@23 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
parent
4d5ce0cbf5
commit
113606ecbf
|
@ -1152,7 +1152,7 @@ void vuFloat2(int regd, int regTemp, int XYZW) {
|
||||||
// Clamps infinities to max/min non-infinity number (doesn't use any temp regs)
|
// Clamps infinities to max/min non-infinity number (doesn't use any temp regs)
|
||||||
void vuFloat( int info, int regd, int XYZW) {
|
void vuFloat( int info, int regd, int XYZW) {
|
||||||
if( CHECK_OVERFLOW ) {
|
if( CHECK_OVERFLOW ) {
|
||||||
if ( (XYZW != 0) || (XYZW != 8) || (XYZW != 0xF) ) {
|
if ( (XYZW != 0) && (XYZW != 8) && (XYZW != 0xF) ) {
|
||||||
int t1reg = _vuGetTempXMMreg2(info, regd);
|
int t1reg = _vuGetTempXMMreg2(info, regd);
|
||||||
if (t1reg >= 0) {
|
if (t1reg >= 0) {
|
||||||
vuFloat2( regd, t1reg, XYZW );
|
vuFloat2( regd, t1reg, XYZW );
|
||||||
|
|
Loading…
Reference in New Issue