mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-19 08:51:59 +00:00
fix the sw32 fov caps so it maches sw and gl
This commit is contained in:
parent
6c0b62d71c
commit
a1fef28b60
1 changed files with 1 additions and 1 deletions
|
@ -279,7 +279,7 @@ SCR_CalcRefdef (void)
|
|||
Cvar_SetValue (scr_viewsize, bound (30, scr_viewsize->int_val, 120));
|
||||
|
||||
// bound field of view
|
||||
Cvar_SetValue (scr_fov, bound (10, scr_fov->value, 170));
|
||||
Cvar_SetValue (scr_fov, bound (1, scr_fov->value, 170));
|
||||
|
||||
if (scr_viewsize->int_val >= 120)
|
||||
sb_lines = 0; // no status bar at all
|
||||
|
|
Loading…
Reference in a new issue