mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
Small bug fixed, reported by shadowalker. -width sends -height the wrong way (4/3 instead of 3/4)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1210 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
5dce02d558
commit
5a44d42688
1 changed files with 2 additions and 2 deletions
|
@ -2999,7 +2999,7 @@ void Host_Init (quakeparms_t *parms)
|
|||
if ((i = COM_CheckParm ("-width"))) //width on it's own also sets height
|
||||
{
|
||||
Cvar_Set(Cvar_FindVar("vid_width"), com_argv[i+1]);
|
||||
Cvar_SetValue(Cvar_FindVar("vid_height"), (atoi(com_argv[i+1])/3)*4);
|
||||
Cvar_SetValue(Cvar_FindVar("vid_height"), (atoi(com_argv[i+1])/4)*3);
|
||||
}
|
||||
if ((i = COM_CheckParm ("-height")))
|
||||
Cvar_Set(Cvar_FindVar("vid_height"), com_argv[i+1]);
|
||||
|
@ -3007,7 +3007,7 @@ void Host_Init (quakeparms_t *parms)
|
|||
if ((i = COM_CheckParm ("-conwidth"))) //width on it's own also sets height
|
||||
{
|
||||
Cvar_Set(Cvar_FindVar("vid_conwidth"), com_argv[i+1]);
|
||||
Cvar_SetValue(Cvar_FindVar("vid_conheight"), (atoi(com_argv[i+1])/3)*4);
|
||||
Cvar_SetValue(Cvar_FindVar("vid_conheight"), (atoi(com_argv[i+1])/4)*3);
|
||||
}
|
||||
if ((i = COM_CheckParm ("-conheight")))
|
||||
Cvar_Set(Cvar_FindVar("vid_conheight"), com_argv[i+1]);
|
||||
|
|
Loading…
Reference in a new issue