From 2398fc21de78bb720de672355c7972999a92e47a Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Sun, 15 Feb 2009 13:14:42 +0000 Subject: Fix setting of home directory for OSX --- src/main.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index a368ae5c..85ea4b1f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -261,14 +261,18 @@ void setUpdatesDir() void init_engine(const Options &options) { if (homeDir.empty()) +#if defined __APPLE__ + // Use Application Directory instead of .tmw + homeDir = std::string(PHYSFS_getUserDir()) + + "/Library/Application Support/The Mana World"; +#else homeDir = std::string(PHYSFS_getUserDir()) + "/.tmw"; +#endif + #if defined WIN32 if (!CreateDirectory(homeDir.c_str(), 0) && GetLastError() != ERROR_ALREADY_EXISTS) #elif defined __APPLE__ - // Use Application Directory instead of .tmw - homeDir = std::string(PHYSFS_getUserDir()) + - "/Library/Application Support/The Mana World"; if ((mkdir(homeDir.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH) != 0) && (errno != EEXIST)) #else -- cgit v1.2.3-70-g09d2