mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-01-22 16:01:25 +00:00
Forgot a couple of )'s in audit.
This commit is contained in:
parent
71b841adeb
commit
eabff4f06b
1 changed files with 2 additions and 2 deletions
|
@ -310,10 +310,10 @@ static void SCR_CalcRefdef (void)
|
||||||
//========================================
|
//========================================
|
||||||
|
|
||||||
// bound viewsize
|
// bound viewsize
|
||||||
Cvar_SetValue (scr_viewsize, bound (30, scr_viewsize->value, 120);
|
Cvar_SetValue (scr_viewsize, bound (30, scr_viewsize->value, 120));
|
||||||
|
|
||||||
// bound field of view
|
// bound field of view
|
||||||
Cvar_Set (scr_fov, bound (10, scr_fov->value, 170);
|
Cvar_SetValue (scr_fov, bound (10, scr_fov->value, 170));
|
||||||
|
|
||||||
// intermission is always full screen
|
// intermission is always full screen
|
||||||
if (cl.intermission)
|
if (cl.intermission)
|
||||||
|
|
Loading…
Reference in a new issue