Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29608/src
Modified Files:
leveleditor.cpp setup.cpp
Log Message:
- -Wall fixing
- removed level editor from menu, since it crashes on settings and is thus not useable in release
Index: setup.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/setup.cpp,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -d -r1.66 -r1.67
--- setup.cpp 1 May 2004 16:39:08 -0000 1.66
+++ setup.cpp 2 May 2004 22:44:56 -0000 1.67
@@ -382,7 +382,7 @@
main_menu->additem(MN_GOTO, "Start Game",0,load_game_menu, MNID_STARTGAME);
main_menu->additem(MN_GOTO, "Contrib Levels",0,contrib_menu, MNID_CONTRIB);
main_menu->additem(MN_GOTO, "Options",0,options_menu, MNID_OPTIONMENU);
- main_menu->additem(MN_ACTION,"Level editor",0,0, MNID_LEVELEDITOR);
+ //main_menu->additem(MN_ACTION,"Level Editor",0,0, MNID_LEVELEDITOR);
main_menu->additem(MN_ACTION,"Credits",0,0, MNID_CREDITS);
main_menu->additem(MN_ACTION,"Quit",0,0, MNID_QUITMAINMENU);
Index: leveleditor.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/leveleditor.cpp,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -d -r1.75 -r1.76
--- leveleditor.cpp 2 May 2004 21:28:32 -0000 1.75
+++ leveleditor.cpp 2 May 2004 22:44:56 -0000 1.76
@@ -784,8 +784,9 @@
if(TileManager::instance()->get(le_current.tile)->editor_images.size() > 0)
TileManager::instance()->get(le_current.tile)->editor_images[0]->draw( 19 * 32, 14 * 32);
}
- if(le_current.IsObject())
- printf("");
+
+ //if(le_current.IsObject())
+ //printf("");
if(le_current_level != NULL)
{
|