Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2339/src
Modified Files:
worldmap.cpp
Log Message:
There is no need in saving on exit, since it already saves in level exit.
Index: worldmap.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/worldmap.cpp,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -d -r1.67 -r1.68
--- worldmap.cpp 6 May 2004 15:09:47 -0000 1.67
+++ worldmap.cpp 8 May 2004 10:45:52 -0000 1.68
@@ -744,8 +744,6 @@
case MNID_RETURNWORLDMAP: // Return to game
break;
case MNID_QUITWORLDMAP: // Quit Worldmap
- if (!savegame_file.empty())
- savegame(savegame_file);
quit = true;
break;
}
|