diff options
Diffstat (limited to 'src/cgame/cg_view.c')
-rw-r--r-- | src/cgame/cg_view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cgame/cg_view.c b/src/cgame/cg_view.c index edfc9896..9fc2a145 100644 --- a/src/cgame/cg_view.c +++ b/src/cgame/cg_view.c @@ -761,11 +761,11 @@ static int CG_CalcFov( void ) float temp, temp2; temp = (float)( cg.time - cg.spawnTime ) / FOVWARPTIME; - temp2 = ( 180 - fov_x ) * temp; + temp2 = ( 170 - fov_x ) * temp; //Com_Printf( "%f %f\n", temp*100, temp2*100 ); - fov_x = 180 - temp2; + fov_x = 170 - temp2; } // account for zooms |