features weren

This commit is contained in:
Josh Vanderhoof 1999-08-28 01:38:54 +00:00
parent a43cfd71da
commit 4f738b4c10
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ void gl_init_all_x86_asm (void)
if (s == NULL) {
fprintf (stderr, "MMX cpu detected.\n");
} else {
gl_x86_cpu_features &= (!GL_CPU_MMX);
gl_x86_cpu_features &= (~GL_CPU_MMX);
}
}
#endif
@ -68,7 +68,7 @@ void gl_init_all_x86_asm (void)
fprintf (stderr, "3Dnow cpu detected.\n");
gl_init_3dnow_asm_transforms ();
} else {
gl_x86_cpu_features &= (!GL_CPU_3Dnow);
gl_x86_cpu_features &= (~GL_CPU_3Dnow);
}
}
#endif