From 50458458963ce63c1f977dc7f1002025b66fe2dd Mon Sep 17 00:00:00 2001 From: drfrag666 Date: Wed, 20 Jun 2018 12:43:51 +0200 Subject: [PATCH] - Added NO SSE2 version identification to the gameversion cmd. --- src/c_cmds.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/c_cmds.cpp b/src/c_cmds.cpp index 6eb3dc988..0b03a951d 100644 --- a/src/c_cmds.cpp +++ b/src/c_cmds.cpp @@ -456,7 +456,11 @@ CCMD(setinv) CCMD (gameversion) { +#ifndef NO_SSE Printf ("%s @ %s\nCommit %s\n", GetVersionString(), GetGitTime(), GetGitHash()); +#else + Printf ("%s NO SSE2 @ %s\nCommit %s\n", GetVersionString(), GetGitTime(), GetGitHash()); +#endif } CCMD (print)