From 2e4fc209194974e2a44e7ee5c55d9f5d1f092955 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 7 Dec 2003 04:18:38 +0000 Subject: [PATCH] SYS_BASE_PATH --- stepmania/src/RageLog.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageLog.cpp b/stepmania/src/RageLog.cpp index 8c8fdb7ce9..61d6c10c8f 100644 --- a/stepmania/src/RageLog.cpp +++ b/stepmania/src/RageLog.cpp @@ -66,12 +66,13 @@ RageLog* LOG; // global and accessable from anywhere in the program map LogMaps; // constants +/* We need to use SYS_BASE_PATH here, because this doesn't go through RageFile. */ #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" +#define LOG_PATH SYS_BASE_PATH "log.txt" +#define INFO_PATH SYS_BASE_PATH "info.txt" #endif #if defined(HAVE_VERSION_INFO)