save config to ~/.supertux2 to avoid collision with MS1.
authorWolfgang Becker <uafr@gmx.de>
Sun, 9 Jul 2006 12:43:56 +0000 (12:43 +0000)
committerWolfgang Becker <uafr@gmx.de>
Sun, 9 Jul 2006 12:43:56 +0000 (12:43 +0000)
SVN-Revision: 3968

src/main.cpp

index 3803693..1eadf1a 100644 (file)
@@ -86,7 +86,7 @@ static void init_physfs(const char* argv0)
 
   // Initialize physfs (this is a slightly modified version of
   // PHYSFS_setSaneConfig
-  const char* application = PACKAGE_NAME;
+  const char* application = "supertux2"; //instead of PACKAGE_NAME so we can coexist with MS1
   const char* userdir = PHYSFS_getUserDir();
   const char* dirsep = PHYSFS_getDirSeparator();
   char* writedir = new char[strlen(userdir) + strlen(application) + 2];