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:
Yamagi Burmeister 2015-06-06 20:54:10 +02:00
parent 50ad12ce13
commit 7ddbedc9c5
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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)