From ea628ea706aa19e11a248687ec1df9a5f5f3952d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 13 Aug 2003 04:52:41 +0000 Subject: [PATCH] Don't send newlines to LOG. --- stepmania/src/RageLog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageLog.cpp b/stepmania/src/RageLog.cpp index 62828feec6..8217d49721 100644 --- a/stepmania/src/RageLog.cpp +++ b/stepmania/src/RageLog.cpp @@ -125,7 +125,7 @@ RageLog::RageLog() RageLog::~RageLog() { /* Add the mapped log data to info.txt. */ - this->Info( "Statics:\n%s", GetAdditionalLog() ); + this->Info( "%s", GetAdditionalLog() ); Flush(); HideConsole();