2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-22 09:56:22 +01:00

engine: client: clean up scr_viewsize remnants, don't tell client.dll scr_viewsize cvar value

This commit is contained in:
Alibek Omarov 2024-07-30 15:18:15 +03:00
parent a7d63649f8
commit 1fc7547a53

View File

@ -35,7 +35,7 @@ static void V_CalcViewRect( void )
int sb_lines;
float size;
if( FBitSet( host.features, ENGINE_QUAKE_COMPATIBLE ))
if( Host_IsQuakeCompatible( ))
{
// intermission is always full screen
if( cl.intermission ) size = 120.0f;
@ -144,7 +144,9 @@ static void V_SetRefParams( ref_params_t *fd )
VectorCopy( cl.viewangles, fd->cl_viewangles );
fd->health = cl.local.health;
VectorCopy( cl.crosshairangle, fd->crosshairangle );
fd->viewsize = scr_viewsize.value;
if( Host_IsQuakeCompatible( ))
fd->viewsize = scr_viewsize.value;
else fd->viewsize = 120.0f;
VectorCopy( cl.punchangle, fd->punchangle );
fd->maxclients = cl.maxclients;