James Eder : include/winternl.h: Fix CPU_FEATURE_3DNOW bit mask.

Alexandre Julliard julliard at winehq.org
Fri Sep 7 13:26:20 CDT 2012


Module: wine
Branch: master
Commit: b97a07bc0721f3c6c7308e365e12c15c0f25237a
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=b97a07bc0721f3c6c7308e365e12c15c0f25237a

Author: James Eder <jimportal at gmail.com>
Date:   Thu Sep  6 09:23:13 2012 -0600

include/winternl.h: Fix CPU_FEATURE_3DNOW bit mask.

---

 include/winternl.h |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/include/winternl.h b/include/winternl.h
index bcf18f5..79078f0 100644
--- a/include/winternl.h
+++ b/include/winternl.h
@@ -1146,8 +1146,7 @@ typedef struct _SYSTEM_CPU_INFORMATION {
 #define CPU_FEATURE_FXSR   0x00000800   /* FXSAVE and FXSTORE instructions */
 #define CPU_FEATURE_SEP    0x00001000   /* SYSENTER and SYSEXIT instructions */
 #define CPU_FEATURE_SSE    0x00002000   /* SSE extensions (ext. MMX) */
-#define CPU_FEATURE_3DNOW  0x00008000   /* 3DNOW instructions available 
-                                           (FIXME: needs to be confirmed) */
+#define CPU_FEATURE_3DNOW  0x00004000   /* 3DNOW instructions available */
 #define CPU_FEATURE_SSE2   0x00010000   /* SSE2 extensions (XMMI64) */
 #define CPU_FEATURE_DS     0x00020000   /* Debug Store */
 #define CPU_FEATURE_HTT    0x00040000   /* Hyper Threading Technology */




More information about the wine-cvs mailing list