Mercurial > sdl-ios-xcode
diff src/video/x11/SDL_x11video.c @ 88:71774090f286
Hopefully fixed the fullscreen mode code for KDE
author | Sam Lantinga <slouken@lokigames.com> |
---|---|
date | Sat, 07 Jul 2001 07:59:37 +0000 |
parents | 74212992fb08 |
children | 2a8d929f50e0 |
line wrap: on
line diff
--- a/src/video/x11/SDL_x11video.c Sat Jul 07 06:33:33 2001 +0000 +++ b/src/video/x11/SDL_x11video.c Sat Jul 07 07:59:37 2001 +0000 @@ -853,11 +853,7 @@ if ( flags & SDL_FULLSCREEN ) { screen->flags |= SDL_FULLSCREEN; X11_WaitMapped(this, WMwindow); -#ifdef GRAB_FULLSCREEN X11_EnterFullScreen(this); -#else - X11_QueueEnterFullScreen(this); -#endif } else { screen->flags &= ~SDL_FULLSCREEN; } @@ -881,11 +877,7 @@ X11_ResizeFullScreen(this); } else { screen->flags |= SDL_FULLSCREEN; -#ifdef GRAB_FULLSCREEN X11_EnterFullScreen(this); -#else - X11_QueueEnterFullScreen(this); -#endif } } else { if ( screen->flags & SDL_FULLSCREEN ) { @@ -969,12 +961,8 @@ SDL_Lock_EventThread(); } if ( on ) { -#ifdef GRAB_FULLSCREEN this->screen->flags |= SDL_FULLSCREEN; X11_EnterFullScreen(this); -#else - X11_QueueEnterFullScreen(this); -#endif } else { this->screen->flags &= ~SDL_FULLSCREEN; X11_LeaveFullScreen(this);