mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 22:51:37 +00:00
I'd been meaning to do this for awhile but thought I was the only one who
cared. fov > 90 in software and your gun is never drawn. No more, now your gun will be drawn unless you esplicitly turn it off.
This commit is contained in:
parent
9d869f6f00
commit
2607f7e1ac
1 changed files with 2 additions and 2 deletions
|
@ -695,9 +695,9 @@ void R_DrawViewModel (void)
|
||||||
dlight_t *dl;
|
dlight_t *dl;
|
||||||
|
|
||||||
#ifdef QUAKEWORLD
|
#ifdef QUAKEWORLD
|
||||||
if (!r_drawviewmodel->value || r_fov_greater_than_90 || !Cam_DrawViewModel())
|
if (!r_drawviewmodel->value || !Cam_DrawViewModel())
|
||||||
#else
|
#else
|
||||||
if (!r_drawviewmodel->value || r_fov_greater_than_90)
|
if (!r_drawviewmodel->value)
|
||||||
#endif // QUAKEWORLD
|
#endif // QUAKEWORLD
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue