mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 07:57:51 +00:00
- Fixed: the vid_rendermode CVAR could get wrong values.
This commit is contained in:
parent
6362415054
commit
cbb5f8a0dc
1 changed files with 5 additions and 0 deletions
|
@ -93,6 +93,11 @@ CUSTOM_CVAR(Int, vid_maxfps, 200, CVAR_ARCHIVE | CVAR_GLOBALCONFIG)
|
||||||
|
|
||||||
CUSTOM_CVAR(Int, vid_rendermode, 4, CVAR_ARCHIVE | CVAR_GLOBALCONFIG | CVAR_NOINITCALL)
|
CUSTOM_CVAR(Int, vid_rendermode, 4, CVAR_ARCHIVE | CVAR_GLOBALCONFIG | CVAR_NOINITCALL)
|
||||||
{
|
{
|
||||||
|
if (self < 0 || self > 4)
|
||||||
|
{
|
||||||
|
self = 4;
|
||||||
|
}
|
||||||
|
|
||||||
if (usergame)
|
if (usergame)
|
||||||
{
|
{
|
||||||
// [SP] Update pitch limits to the netgame/gamesim.
|
// [SP] Update pitch limits to the netgame/gamesim.
|
||||||
|
|
Loading…
Reference in a new issue