From 8407c758b1ead0105c869b14fee99ec9b307113a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 5 Sep 2003 07:36:40 +0000 Subject: [PATCH] Use \n newlines in Darwin, too, not \r. --- stepmania/src/RageLog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/RageLog.cpp b/stepmania/src/RageLog.cpp index 41e6eee5ab..8d3b15410c 100644 --- a/stepmania/src/RageLog.cpp +++ b/stepmania/src/RageLog.cpp @@ -248,8 +248,8 @@ void RageLog::Flush() #if defined(_WIN32) #define NEWLINE "\r\n" -#elif defined(DARWIN) -#define NEWLINE "\r" +//#elif defined(DARWIN) +//#define NEWLINE "\r" #else #define NEWLINE "\n" #endif