From ead3840ccd6ff5d46e29aa30d391a8062924318e Mon Sep 17 00:00:00 2001 From: n-a-c-h <> Date: Thu, 27 Oct 2005 14:30:24 +0000 Subject: [PATCH] Oops was too space happy. --- zsnes/src/acinclude.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsnes/src/acinclude.m4 b/zsnes/src/acinclude.m4 index be1613e4..e66839df 100644 --- a/zsnes/src/acinclude.m4 +++ b/zsnes/src/acinclude.m4 @@ -410,7 +410,7 @@ if test x$enable_cpucheck != xno; then #if __GNUC__ > 3 || __GNUC_MINOR__ > 3 if (strstr(flags, " sse2 ") && strstr(flags, " lm ")) //Need two checks to protect Semprons { - if (strstr(model_name, " Opteron ")) { cpu = "opteron"; } + if (strstr(model_name, "Opteron")) { cpu = "opteron"; } else { cpu = (strstr(model_name, "Athlon(tm) 64")) ? "athlon64" : "k8"; } } //Athlon64, also athlon-fx #endif