From 30427807f6b5d9fb362117cb331002542b253607 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 11 Feb 2006 03:12:17 +0000 Subject: [PATCH] Fix line ending glitches in crashinfo.txt due to changes in how it's written. --- stepmania/src/RageLog.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/stepmania/src/RageLog.cpp b/stepmania/src/RageLog.cpp index 7a1ff1737a..5b20a0f7c2 100644 --- a/stepmania/src/RageLog.cpp +++ b/stepmania/src/RageLog.cpp @@ -268,18 +268,7 @@ void RageLog::Flush() } -/* These Get* functions are designed to be called from crash conditions. We - * store the text in a static buffer, which we can always access, and we double- - * check that it's null terminated when we return them. Finally, multi-line - * outputs can specify the string used to delineate lines (\n, \r or \r\n). That - * way, crash handlers can simply write() the buffer to a file without having - * to convert line endings, which is tedious when you can't malloc(). */ - -#if defined(WIN32) -#define NEWLINE "\r\n" -#else #define NEWLINE "\n" -#endif static char staticlog[1024*32]=""; static unsigned staticlog_size = 0;