summaryrefslogtreecommitdiff
path: root/src/Misc.cpp
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-07-20 20:19:17 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-07-20 20:19:17 (GMT)
commitd6de5fc997b7d1ec17ad7f16a1c5044184e248c9 (patch)
treebebb575e9f4037adf6930447e8579ba2a67f6e50 /src/Misc.cpp
parent947102cccf8ac9e245c883eb58399c7d232a755a (diff)
downloadpowder-d6de5fc997b7d1ec17ad7f16a1c5044184e248c9.zip
powder-d6de5fc997b7d1ec17ad7f16a1c5044184e248c9.tar.gz
Remove AMD detection from CPU check
Diffstat (limited to 'src/Misc.cpp')
-rw-r--r--src/Misc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Misc.cpp b/src/Misc.cpp
index 0d129e3..56e7370 100644
--- a/src/Misc.cpp
+++ b/src/Misc.cpp
@@ -284,8 +284,8 @@ int cpu_check(void)
#ifdef X86
unsigned af,bf,cf,df;
x86_cpuid(0, af, bf, cf, df);
- if (bf==0x68747541 && cf==0x444D4163 && df==0x69746E65)
- amd = 1;
+ //if (bf==0x68747541 && cf==0x444D4163 && df==0x69746E65)
+ // amd = 1;
x86_cpuid(1, af, bf, cf, df);
#ifdef X86_SSE
if (!(df&(1<<25)))