mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
bum.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4802 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
3e2bffdddc
commit
100c46a7cc
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue