aboutsummaryrefslogtreecommitdiffstats
path: root/code/game/g_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/game/g_main.c')
-rw-r--r--code/game/g_main.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/code/game/g_main.c b/code/game/g_main.c
index f369ffc..99c1222 100644
--- a/code/game/g_main.c
+++ b/code/game/g_main.c
@@ -95,7 +95,6 @@ vmCvar_t g_enableBreath;
vmCvar_t g_proxMineTimeout;
#endif
-// bk001129 - made static to avoid aliasing
static cvarTable_t gameCvarTable[] = {
// don't override the cheat state set by the system
{ &g_cheats, "sv_cheats", "", 0, 0, qfalse },
@@ -182,7 +181,6 @@ static cvarTable_t gameCvarTable[] = {
};
-// bk001129 - made static to avoid aliasing
static int gameCvarTableSize = sizeof( gameCvarTable ) / sizeof( gameCvarTable[0] );
@@ -1118,7 +1116,7 @@ Append information about this game to the log file
void LogExit( const char *string ) {
int i, numSorted;
gclient_t *cl;
-#ifdef MISSIONPACK // bk001205
+#ifdef MISSIONPACK
qboolean won = qtrue;
#endif
G_LogPrintf( "Exit: %s\n", string );