[quake3-commits] r1904 - trunk/code/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Fri Mar 4 15:29:24 EST 2011


Author: thilo
Date: 2011-03-04 15:29:24 -0500 (Fri, 04 Mar 2011)
New Revision: 1904

Modified:
   trunk/code/client/cl_console.c
Log:
(#4291) Redundant statement in client console, by Zack Middleton


Modified: trunk/code/client/cl_console.c
===================================================================
--- trunk/code/client/cl_console.c	2011-03-04 20:26:57 UTC (rev 1903)
+++ trunk/code/client/cl_console.c	2011-03-04 20:29:24 UTC (rev 1904)
@@ -445,10 +445,8 @@
 			y = con.current % con.totallines;
 			con.text[y*con.linewidth+con.x] = (color << 8) | c;
 			con.x++;
-			if (con.x >= con.linewidth) {
+			if(con.x >= con.linewidth)
 				Con_Linefeed(skipnotify);
-				con.x = 0;
-			}
 			break;
 		}
 	}



More information about the quake3-commits mailing list