Added presence of QCJIT to the 'version' command if enabled.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3871 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Lance 2011-07-13 13:43:20 +00:00
parent 26e2638301
commit 7fa677ccf5
2 changed files with 8 additions and 3 deletions

View file

@ -3165,6 +3165,10 @@ void COM_Version_f (void)
Con_Printf("Direct3D available\n");
#endif
#ifdef QCJIT
Con_Printf("QuakeC just-in-time compiler (QCJIT) enabled\n");
#endif
#ifdef _SDL
Con_Printf("SDL version: %d.%d.%d\n", SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_PATCHLEVEL);
#endif