summaryrefslogtreecommitdiffstats
path: root/cpudetect.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-01-26 09:29:53 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-01-26 09:29:53 +0000
commiteb4a4604c099fa7c656b30d3edb759cb4c58661c (patch)
tree688310b04605805b0a7d0b033d81901c59c0c154 /cpudetect.c
parent418ce8eb059d44594b02c8e94d5a0a7ab28350e2 (diff)
downloadmpv-eb4a4604c099fa7c656b30d3edb759cb4c58661c.tar.bz2
mpv-eb4a4604c099fa7c656b30d3edb759cb4c58661c.tar.xz
HAVE_3DNOW --> HAVE_AMD3DNOW
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28370 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cpudetect.c')
-rw-r--r--cpudetect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpudetect.c b/cpudetect.c
index fee0c8fc1f..14540842be 100644
--- a/cpudetect.c
+++ b/cpudetect.c
@@ -228,11 +228,11 @@ void GetCpuCaps( CpuCaps *caps)
if(caps->hasSSE2) mp_msg(MSGT_CPUDETECT,MSGL_WARN,"SSE2 supported but disabled\n");
caps->hasSSE2=0;
#endif
-#if !HAVE_3DNOW
+#if !HAVE_AMD3DNOW
if(caps->has3DNow) mp_msg(MSGT_CPUDETECT,MSGL_WARN,"3DNow supported but disabled\n");
caps->has3DNow=0;
#endif
-#if !HAVE_3DNOWEXT
+#if !HAVE_AMD3DNOWEXT
if(caps->has3DNowExt) mp_msg(MSGT_CPUDETECT,MSGL_WARN,"3DNowExt supported but disabled\n");
caps->has3DNowExt=0;
#endif