aboutsummaryrefslogtreecommitdiff
path: root/base/gameDetector.cpp
diff options
context:
space:
mode:
authorJonathan Gray2004-12-18 11:07:47 +0000
committerJonathan Gray2004-12-18 11:07:47 +0000
commitf344976a350f1edd6b95d80d30a4cc9146e7a7d9 (patch)
treebd7104de8e5cf96d5cb75ed8e11524be00f8bc69 /base/gameDetector.cpp
parent8c34db8b9ae2ae9d992b46f72a9605f1b919893c (diff)
downloadscummvm-rg350-f344976a350f1edd6b95d80d30a4cc9146e7a7d9.tar.gz
scummvm-rg350-f344976a350f1edd6b95d80d30a4cc9146e7a7d9.tar.bz2
scummvm-rg350-f344976a350f1edd6b95d80d30a4cc9146e7a7d9.zip
Default save path for OS X as well.
svn-id: r16112
Diffstat (limited to 'base/gameDetector.cpp')
-rw-r--r--base/gameDetector.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/base/gameDetector.cpp b/base/gameDetector.cpp
index d873f0da5f..3e7b72e265 100644
--- a/base/gameDetector.cpp
+++ b/base/gameDetector.cpp
@@ -39,7 +39,9 @@
#ifdef UNIX
#include <sys/errno.h>
#include <sys/stat.h>
-#ifndef MACOSX
+#ifdef MACOSX
+#define DEFAULT_SAVE_PATH "Documents/ScummVM Savegames"
+#else
#define DEFAULT_SAVE_PATH ".scummvm"
#endif
#endif