summaryrefslogtreecommitdiffstats
path: root/mpcommon.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-01-31 04:52:15 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-01-31 04:52:15 +0200
commitccf4d9e96cd7aa8506e6632d2a7352ec89b2b9e3 (patch)
treea5f3a6d636e96f05bb52f0b2407107a7f0c8b443 /mpcommon.c
parent03aa64687fc109c5f2346a3c191b70698b333509 (diff)
parent0e77da241da8b911c96a0e22898e84d7f7b74678 (diff)
downloadmpv-ccf4d9e96cd7aa8506e6632d2a7352ec89b2b9e3.tar.bz2
mpv-ccf4d9e96cd7aa8506e6632d2a7352ec89b2b9e3.tar.xz
Merge svn changes up to r28403
Diffstat (limited to 'mpcommon.c')
-rw-r--r--mpcommon.c24
1 files changed, 8 insertions, 16 deletions
diff --git a/mpcommon.c b/mpcommon.c
index 4c6c780a7b..99d70c0ef4 100644
--- a/mpcommon.c
+++ b/mpcommon.c
@@ -47,30 +47,22 @@ void print_version(const char* name)
mp_msg(MSGT_CPLAYER,MSGL_V, MSGTR_CompiledWithRuntimeDetection);
#else
mp_msg(MSGT_CPLAYER,MSGL_V, MSGTR_CompiledWithCPUExtensions);
-#if HAVE_MMX
+if (HAVE_MMX)
mp_msg(MSGT_CPLAYER,MSGL_V," MMX");
-#endif
-#if HAVE_MMX2
+if (HAVE_MMX2)
mp_msg(MSGT_CPLAYER,MSGL_V," MMX2");
-#endif
-#if HAVE_3DNOW
+if (HAVE_AMD3DNOW)
mp_msg(MSGT_CPLAYER,MSGL_V," 3DNow");
-#endif
-#if HAVE_3DNOWEXT
+if (HAVE_AMD3DNOWEXT)
mp_msg(MSGT_CPLAYER,MSGL_V," 3DNowExt");
-#endif
-#if HAVE_SSE
+if (HAVE_SSE)
mp_msg(MSGT_CPLAYER,MSGL_V," SSE");
-#endif
-#if HAVE_SSE2
+if (HAVE_SSE2)
mp_msg(MSGT_CPLAYER,MSGL_V," SSE2");
-#endif
-#if HAVE_SSSE3
+if (HAVE_SSSE3)
mp_msg(MSGT_CPLAYER,MSGL_V," SSSE3");
-#endif
-#if HAVE_CMOV
+if (HAVE_CMOV)
mp_msg(MSGT_CPLAYER,MSGL_V," CMOV");
-#endif
mp_msg(MSGT_CPLAYER,MSGL_V,"\n");
#endif /* RUNTIME_CPUDETECT */
#endif /* ARCH_X86 */