- fixed file extension, removed pwd.h header
authorIngo Ruhnke <grumbel@gmx.de>
Sun, 21 Mar 2004 18:04:20 +0000 (18:04 +0000)
committerIngo Ruhnke <grumbel@gmx.de>
Sun, 21 Mar 2004 18:04:20 +0000 (18:04 +0000)
SVN-Revision: 298

src/gameloop.cpp
src/intro.cpp
src/menu.cpp
src/screen.cpp
src/setup.cpp
src/title.cpp
src/worldmap.cpp

index 8596904..8ea2f99 100644 (file)
@@ -19,7 +19,6 @@
 #include <SDL.h>
 
 #ifndef WIN32
-#include <pwd.h>
 #include <sys/types.h>
 #include <ctype.h>
 #endif
index 69aadd9..a88146d 100644 (file)
@@ -19,7 +19,6 @@
 #include <SDL_image.h>
 
 #ifndef LINUX
-#include <pwd.h>
 #include <sys/types.h>
 #include <ctype.h>
 #endif
index 96ce850..7e91b9d 100644 (file)
@@ -11,7 +11,6 @@
 */
 
 #ifndef WIN32
-#include <pwd.h>
 #include <sys/types.h>
 #include <ctype.h>
 #endif
index 390e70a..2ac21d0 100644 (file)
@@ -19,7 +19,6 @@
 #include <SDL_image.h>
 
 #ifndef WIN32
-#include <pwd.h>
 #include <sys/types.h>
 #include <ctype.h>
 #endif
index bc9d10c..4d41e15 100644 (file)
@@ -23,7 +23,6 @@
 #endif
 
 #ifndef WIN32
-#include <pwd.h>
 #include <sys/stat.h>
 #include <sys/types.h>
 #include <dirent.h>
index 517c004..3d877a1 100644 (file)
@@ -19,7 +19,6 @@
 #include <SDL_image.h>
 
 #ifndef WIN32
-#include <pwd.h>
 #include <sys/types.h>
 #include <ctype.h>
 #endif
index f71f28e..d7201fb 100644 (file)
@@ -217,7 +217,7 @@ WorldMap::~WorldMap()
 void
 WorldMap::load_map()
 {
-  lisp_object_t* root_obj = lisp_read_from_file(datadir +  "levels/default/worldmap.scm");
+  lisp_object_t* root_obj = lisp_read_from_file(datadir +  "levels/default/worldmap.stwm");
   assert(root_obj);
   
   if (strcmp(lisp_symbol(lisp_car(root_obj)), "supertux-worldmap") == 0)