mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
fix a misplaced _
This commit is contained in:
parent
dd3805a56e
commit
556a6eae8f
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ VID_GetWindowSize (int def_w, int def_h)
|
|||
Cvar_SetFlags (con_width, con_width->flags | CVAR_ROM);
|
||||
vid.conwidth = con_width->int_val;
|
||||
|
||||
con_height = ((vid.conwidth & 0xFFF8) * 3) / 4;
|
||||
conheight = ((vid.conwidth & 0xFFF8) * 3) / 4;
|
||||
con_height = Cvar_Get ("con_height", va ("%d", conheight), CVAR_NONE, NULL,
|
||||
"console effective height (GL only)");
|
||||
if ((pnum = COM_CheckParm ("-conheight"))) {
|
||||
|
|
Loading…
Reference in a new issue