From d6dd8c636b571207bc2d48197edfa3be49927b44 Mon Sep 17 00:00:00 2001 From: dhewg Date: Fri, 6 Jul 2012 00:14:25 +0200 Subject: [PATCH] Fix sys/cpu.cpp for msvc 64bit --- neo/sys/cpu.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/neo/sys/cpu.cpp b/neo/sys/cpu.cpp index 8e7e1599..56a06dcf 100644 --- a/neo/sys/cpu.cpp +++ b/neo/sys/cpu.cpp @@ -47,7 +47,7 @@ If you have questions concerning this license or the applicable additional terms #define NO_CPUID #endif #elif defined(_MSC_VER) - #if !defined(_M_IX86) && !defined(_M_X64) + #if !defined(_M_IX86) #define NO_CPUID #endif #else @@ -56,11 +56,9 @@ If you have questions concerning this license or the applicable additional terms #ifdef NO_CPUID void Sys_FPU_SetDAZ(bool enable) { - common->Error("ERROR: Sys_FPU_SetDAZ not supported on this architecture\n"); } void Sys_FPU_SetFTZ(bool enable) { - common->Error("ERROR: Sys_FPU_SetFTZ not supported on this architecture\n"); } #else