r92 - trunk/code/game

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sat Sep 17 10:20:22 EDT 2005


Author: ludwig
Date: 2005-09-17 10:20:22 -0400 (Sat, 17 Sep 2005)
New Revision: 92

Modified:
   trunk/code/game/g_team.c
Log:
fix crash when starting a TA CTF game with shared libs (#2367)


Modified: trunk/code/game/g_team.c
===================================================================
--- trunk/code/game/g_team.c	2005-09-17 01:36:38 UTC (rev 91)
+++ trunk/code/game/g_team.c	2005-09-17 14:20:22 UTC (rev 92)
@@ -47,8 +47,9 @@
 
 	switch( g_gametype.integer ) {
 	case GT_CTF:
-		teamgame.redStatus = teamgame.blueStatus = -1; // Invalid to force update
+		teamgame.redStatus = -1; // Invalid to force update
 		Team_SetFlagStatus( TEAM_RED, FLAG_ATBASE );
+		 teamgame.blueStatus = -1; // Invalid to force update
 		Team_SetFlagStatus( TEAM_BLUE, FLAG_ATBASE );
 		break;
 #ifdef MISSIONPACK




More information about the quake3-commits mailing list