diff options
| author | Jonathan Gray | 2004-12-18 11:07:47 +0000 |
|---|---|---|
| committer | Jonathan Gray | 2004-12-18 11:07:47 +0000 |
| commit | f344976a350f1edd6b95d80d30a4cc9146e7a7d9 (patch) | |
| tree | bd7104de8e5cf96d5cb75ed8e11524be00f8bc69 /base | |
| parent | 8c34db8b9ae2ae9d992b46f72a9605f1b919893c (diff) | |
| download | scummvm-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')
| -rw-r--r-- | base/gameDetector.cpp | 4 |
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 |
