From a8ba746fbf1bdac6ba608ddf4ed5e3939d7933e8 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Thu, 8 Nov 2012 16:40:58 +0100 Subject: [PATCH] MSVC workaround --- Core/MIPS/MIPSIntVFPU.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Core/MIPS/MIPSIntVFPU.cpp b/Core/MIPS/MIPSIntVFPU.cpp index ece6463551..4dc955a82f 100644 --- a/Core/MIPS/MIPSIntVFPU.cpp +++ b/Core/MIPS/MIPSIntVFPU.cpp @@ -1092,6 +1092,10 @@ namespace MIPSInt VC_NS }; +#ifdef _MSC_VER +#define isnan _isnan +#endif + void Int_Vcmp(u32 op) { int vt = _VT;