From df56e29d2e92ddb779edaf39d1026e3db77ee231 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 25 Nov 2002 23:28:10 +0000 Subject: Moved config file to a more Macish location on OS X svn-id: r5716 --- common/main.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'common') diff --git a/common/main.cpp b/common/main.cpp index 26c6d6880b..b411bca065 100644 --- a/common/main.cpp +++ b/common/main.cpp @@ -48,7 +48,11 @@ extern "C" int main(int argc, char *argv[]); #ifndef MAXPATHLEN #define MAXPATHLEN 256 #endif +#ifdef MACOSX +#define DEFAULT_CONFIG_FILE "Library/Preferences/ScummVM Preferences" +#else #define DEFAULT_CONFIG_FILE ".scummvmrc" +#endif #else #define DEFAULT_CONFIG_FILE "scummvm.ini" #endif @@ -153,9 +157,9 @@ int main(int argc, char *argv[]) sprintf(scummhome,"%s/%s", getenv("HOME"), DEFAULT_CONFIG_FILE); else strcpy(scummhome,DEFAULT_CONFIG_FILE); #else - char scummhome[255]; + char scummhome[256]; #if defined (WIN32) && !defined(_WIN32_WCE) - GetWindowsDirectory(scummhome, 255); + GetWindowsDirectory(scummhome, 256); strcat(scummhome, "\\"); strcat(scummhome, DEFAULT_CONFIG_FILE); #else -- cgit v1.2.3