(#4291) Redundant statement in client console, by Zack Middleton

This commit is contained in:
Thilo Schulz 2011-03-04 20:29:24 +00:00
parent 0b538a929e
commit b764150a97
1 changed files with 1 additions and 3 deletions

View File

@ -445,10 +445,8 @@ void CL_ConsolePrint( char *txt ) {
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;
}
}