mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 23:02:01 +00:00
(#4291) Redundant statement in client console, by Zack Middleton
This commit is contained in:
parent
0b538a929e
commit
b764150a97
1 changed files with 1 additions and 3 deletions
|
@ -445,10 +445,8 @@ void CL_ConsolePrint( char *txt ) {
|
||||||
y = con.current % con.totallines;
|
y = con.current % con.totallines;
|
||||||
con.text[y*con.linewidth+con.x] = (color << 8) | c;
|
con.text[y*con.linewidth+con.x] = (color << 8) | c;
|
||||||
con.x++;
|
con.x++;
|
||||||
if (con.x >= con.linewidth) {
|
if(con.x >= con.linewidth)
|
||||||
Con_Linefeed(skipnotify);
|
Con_Linefeed(skipnotify);
|
||||||
con.x = 0;
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue