Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17913/src
Modified Files:
misc.cpp
Log Message:
Reverted last commit of Ricardo. The change led to unavoidable crashs in many X configurations including mine. The old behaviour should work correctly under a wide varity of platforms.
Index: misc.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/misc.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- misc.cpp 10 Aug 2004 16:07:28 -0000 1.5
+++ misc.cpp 11 Aug 2004 15:32:21 -0000 1.6
@@ -56,11 +56,7 @@
if(use_fullscreen != options_menu->isToggled(MNID_FULLSCREEN))
{
use_fullscreen = !use_fullscreen;
-#ifdef WIN32
Setup::video(screen->w,screen->h);
-#else
- SDL_WM_ToggleFullScreen(screen);
-#endif
}
break;
case MNID_SOUND:
|