From cd6e51271c7552d7437ae8f22d6097fce547fd59 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 6 Sep 2004 22:27:55 +0000 Subject: [PATCH] Added more build information --- amxmodx/srvcmd.cpp | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/amxmodx/srvcmd.cpp b/amxmodx/srvcmd.cpp index f7c0b476..28df23bc 100755 --- a/amxmodx/srvcmd.cpp +++ b/amxmodx/srvcmd.cpp @@ -138,7 +138,15 @@ void amx_command(){ print_srvconsole( "%s %s\n", Plugin_info.name, Plugin_info.version); print_srvconsole( "author: %s (%s)\n", Plugin_info.author, Plugin_info.url); print_srvconsole( "compiled: %s\n", __DATE__ ", " __TIME__); - +#ifdef JIT + print_srvconsole( "Core mode: JIT\n"); +#else +#ifdef ASM32 + print_srvconsole( "Core mode: ASM\n"); +#else + print_srvconsole( "Core mode: Normal\n"); +#endif +#endif } else if (!strcmp(cmd,"modules")) { @@ -165,12 +173,6 @@ void amx_command(){ } print_srvconsole( "%d modules, %d correct\n",modules,running); - } else if (!strcmp(cmd, "jit")) { -#ifdef JIT - print_srvconsole("Using the JIT.\n"); -#else - print_srvconsole("Not using the JIT.\n"); -#endif } else if (!strcmp(cmd, "gpl")) { print_srvconsole("AMX Mod X\n");