Skip to content

Commit

Permalink
(#4291) Redundant statement in client console, by Zack Middleton
Browse files Browse the repository at this point in the history
  • Loading branch information
Thilo Schulz committed Mar 4, 2011
1 parent 0b538a9 commit b764150
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions code/client/cl_console.c
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit b764150

Please sign in to comment.