SDL: Allow toggling fullscreen for GLES2 on desktops.

Fixes https://github.com/hrydgard/ppsspp/issues/11627
This commit is contained in:
orbea 2018-12-02 19:54:47 -08:00
parent 95ffa15a84
commit 2bbe0d7e65

View File

@ -441,7 +441,7 @@ int main(int argc, char *argv[]) {
}
// If we're on mobile, don't try for windowed either.
#if defined(USING_GLES2) || defined(MOBILE_DEVICE)
#if defined(MOBILE_DEVICE)
mode |= SDL_WINDOW_FULLSCREEN;
#else
mode |= SDL_WINDOW_RESIZABLE;