From 63b954ae229842cdcc89f47c409576d15df4e8fa Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 7 Dec 2003 02:29:39 +0000 Subject: [PATCH] Fix log.txt and info.txt paths on OS X --- stepmania/src/RageLog.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stepmania/src/RageLog.cpp b/stepmania/src/RageLog.cpp index 2111026fb6..8c8fdb7ce9 100644 --- a/stepmania/src/RageLog.cpp +++ b/stepmania/src/RageLog.cpp @@ -66,8 +66,13 @@ RageLog* LOG; // global and accessable from anywhere in the program map LogMaps; // constants +#if defined(DARWIN) +#define LOG_PATH "../../../log.txt" +#define INFO_PATH "../../../info.txt" +#else #define LOG_PATH BASE_PATH "log.txt" #define INFO_PATH BASE_PATH "info.txt" +#endif #if defined(HAVE_VERSION_INFO) extern unsigned long version_num;