mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 07:20:49 +00:00
Don't say nan is equal to anything.
I guess we were passing this because of fastmath? Fixes interpreter cpu/fpu/fpu test on Windows anyway.
This commit is contained in:
parent
455431ba13
commit
7b71dc54dd
@ -925,7 +925,7 @@ namespace MIPSInt
|
||||
|
||||
case 2: //eq
|
||||
case 10: //seq
|
||||
cond = (F(fs) == F(ft));
|
||||
cond = !my_isnan(F(fs)) && !my_isnan(F(ft)) && (F(fs) == F(ft));
|
||||
break;
|
||||
|
||||
case 3: //ueq
|
||||
|
Loading…
Reference in New Issue
Block a user