Configuration and highscore files on windows are now stored in

$APPDATA/supertuxkart (instead of .). This avoids problems with
losing configuration and highscores when uninstalling the game
(e.g. while installing a newer version).


git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@3220 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2009-03-11 02:08:35 +00:00
parent 0bba19cd1f
commit 2a242973b1

@ -354,7 +354,14 @@ std::string FileManager::getHomeDir() const
#ifdef WIN32
// For now the old windows config way is used: store a config file
// in the current directory (in other OS a special subdirectory is created)
DIRNAME=".";
std::ostringstream s;
if(getenv("APPDATA")!=NULL)
{
s<<getenv("APPDATA")<<"/supertuxkart/";
DIRNAME=s.str();
}
else DIRNAME=".";
#else
if(getenv("HOME")!=NULL)
{