diff --git a/engine/web/sys_web.c b/engine/web/sys_web.c index 6e32a627f..385cf6a62 100644 --- a/engine/web/sys_web.c +++ b/engine/web/sys_web.c @@ -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) {