mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-16 14:10:11 +01:00
engine: client: disable viewsize without requested Quake compatibility
This commit is contained in:
parent
1f26710bd0
commit
22e770e4d4
@ -35,6 +35,8 @@ void V_CalcViewRect( void )
|
|||||||
int sb_lines;
|
int sb_lines;
|
||||||
float size;
|
float size;
|
||||||
|
|
||||||
|
if( FBitSet( host.features, ENGINE_QUAKE_COMPATIBLE ))
|
||||||
|
{
|
||||||
// intermission is always full screen
|
// intermission is always full screen
|
||||||
if( cl.intermission ) size = 120.0f;
|
if( cl.intermission ) size = 120.0f;
|
||||||
else size = scr_viewsize->value;
|
else size = scr_viewsize->value;
|
||||||
@ -59,6 +61,13 @@ void V_CalcViewRect( void )
|
|||||||
full = true;
|
full = true;
|
||||||
}
|
}
|
||||||
size /= 100.0f;
|
size /= 100.0f;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
full = true;
|
||||||
|
sb_lines = 0;
|
||||||
|
size = 1.0f;
|
||||||
|
}
|
||||||
|
|
||||||
clgame.viewport[2] = refState.width * size;
|
clgame.viewport[2] = refState.width * size;
|
||||||
clgame.viewport[3] = refState.height * size;
|
clgame.viewport[3] = refState.height * size;
|
||||||
|
Loading…
Reference in New Issue
Block a user