mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Disable unfocus on Emscripten
This commit is contained in:
parent
0063e1c3bc
commit
46ee84d6ef
1 changed files with 4 additions and 0 deletions
|
@ -347,6 +347,8 @@ void KeyPoll::Poll(void)
|
|||
SDL_DisableScreenSaver();
|
||||
break;
|
||||
case SDL_WINDOWEVENT_FOCUS_LOST:
|
||||
// For some reason, SDL_WINDOWEVENT_FOCUS_GAINED doesn't seem to get sent on Emscripten.
|
||||
#ifndef __EMSCRIPTEN__
|
||||
if (!game.disablepause)
|
||||
{
|
||||
isActive = false;
|
||||
|
@ -356,6 +358,8 @@ void KeyPoll::Poll(void)
|
|||
music.pauseef();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
if (SDL_strcmp(SDL_GetCurrentVideoDriver(), "x11") == 0)
|
||||
{
|
||||
wasFullscreen = !graphics.screenbuffer->isWindowed;
|
||||
|
|
Loading…
Reference in a new issue