[quake3-commits] r1641 - trunk/code/game
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Sat Oct 3 19:32:17 EDT 2009
Author: thilo
Date: 2009-10-03 19:32:17 -0400 (Sat, 03 Oct 2009)
New Revision: 1641
Modified:
trunk/code/game/g_client.c
Log:
Forgotten else
Modified: trunk/code/game/g_client.c
===================================================================
--- trunk/code/game/g_client.c 2009-10-03 23:24:38 UTC (rev 1640)
+++ trunk/code/game/g_client.c 2009-10-03 23:32:17 UTC (rev 1641)
@@ -626,7 +626,7 @@
spaces++;
}
- if(outpos > 0 && out[outpos - 1] == Q_COLOR_ESCAPE)
+ else if(outpos > 0 && out[outpos - 1] == Q_COLOR_ESCAPE)
{
if(Q_IsColorString(&out[outpos - 1]))
{
More information about the quake3-commits
mailing list