From 113606ecbfbc3b54f146709fa370cb890b043a38 Mon Sep 17 00:00:00 2001 From: ramapcsx2 Date: Thu, 14 Aug 2008 10:25:30 +0000 Subject: [PATCH] ^^ git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@23 a6443dda-0b58-4228-96e9-037be469359c --- pcsx2/x86/iVUmicro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/x86/iVUmicro.c b/pcsx2/x86/iVUmicro.c index e069bb3f3e..bf560f3dcd 100644 --- a/pcsx2/x86/iVUmicro.c +++ b/pcsx2/x86/iVUmicro.c @@ -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) void vuFloat( int info, int regd, int XYZW) { if( CHECK_OVERFLOW ) { - if ( (XYZW != 0) || (XYZW != 8) || (XYZW != 0xF) ) { + if ( (XYZW != 0) && (XYZW != 8) && (XYZW != 0xF) ) { int t1reg = _vuGetTempXMMreg2(info, regd); if (t1reg >= 0) { vuFloat2( regd, t1reg, XYZW );