mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-22 20:51:31 +00:00
Enable hudscaling by default
The default value is now -1 aka "auto". If someone wants to disable it hew can do so in the menu.
This commit is contained in:
parent
50ad12ce13
commit
7ddbedc9c5
2 changed files with 2 additions and 2 deletions
|
@ -432,7 +432,7 @@ SCR_Init(void)
|
|||
scr_graphscale = Cvar_Get("graphscale", "1", 0);
|
||||
scr_graphshift = Cvar_Get("graphshift", "0", 0);
|
||||
scr_drawall = Cvar_Get("scr_drawall", "0", 0);
|
||||
gl_hudscale = Cvar_Get("gl_hudscale", "1", CVAR_ARCHIVE);
|
||||
gl_hudscale = Cvar_Get("gl_hudscale", "-1", CVAR_ARCHIVE);
|
||||
gl_consolescale = Cvar_Get("gl_consolescale", "1", CVAR_ARCHIVE);
|
||||
gl_menuscale = Cvar_Get("gl_menuscale", "1", CVAR_ARCHIVE);
|
||||
|
||||
|
|
|
@ -299,7 +299,7 @@ VID_MenuInit(void)
|
|||
|
||||
if (!gl_hudscale)
|
||||
{
|
||||
gl_hudscale = Cvar_Get("gl_hudscale", "1", CVAR_ARCHIVE);
|
||||
gl_hudscale = Cvar_Get("gl_hudscale", "-1", CVAR_ARCHIVE);
|
||||
}
|
||||
|
||||
if (!horplus)
|
||||
|
|
Loading…
Reference in a new issue