Merge pull request #99 from openmoh/ioq3-SSE-msg

rephrase SSE availability message (thanks)
This commit is contained in:
Zachary J. Slater 2017-01-24 19:28:41 -10:00 committed by GitHub
commit 7efe1c97a7

View file

@ -2609,7 +2609,7 @@ static void Com_DetectSSE(void)
#endif
Q_VMftol = qvmftolsse;
Com_Printf("Have SSE support\n");
Com_Printf("SSE instruction set enabled\n");
#if !idx64
}
else
@ -2618,7 +2618,7 @@ static void Com_DetectSSE(void)
Q_VMftol = qvmftolx87;
Q_SnapVector = qsnapvectorx87;
Com_Printf("No SSE support on this machine\n");
Com_Printf("SSE instruction set not available\n");
}
#endif
}