git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4802 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2014-12-11 16:42:07 +00:00
parent 3e2bffdddc
commit 100c46a7cc
1 changed files with 3 additions and 3 deletions

View File

@ -146,10 +146,10 @@ void Sys_Init(void)
{
extern cvar_t vid_width, vid_height, vid_fullscreen;
//vid_fullscreen takes effect only on mouse clicks, any suggestion to do a vid_restart is pointless.
vid_fullscreen.flags &= CVAR_RENDERERLATCH;
vid_fullscreen.flags &= ~CVAR_RENDERERLATCH;
//these are not really supported. so silence any spam that suggests we do something about something not even supported.
vid_width.flags &= CVAR_RENDERERLATCH;
vid_height.flags &= CVAR_RENDERERLATCH;
vid_width.flags &= ~CVAR_RENDERERLATCH;
vid_height.flags &= ~CVAR_RENDERERLATCH;
}
void Sys_Shutdown(void)
{