From fe7a3e8127abd6b989dd175b0183885f95a71acc Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 3 Sep 2006 03:48:56 +0000 Subject: [PATCH] Do not remove these files. It is not even always the same location that they'd be written. --- stepmania/src/RageLog.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/stepmania/src/RageLog.cpp b/stepmania/src/RageLog.cpp index 47b67c77a9..b1cc513407 100644 --- a/stepmania/src/RageLog.cpp +++ b/stepmania/src/RageLog.cpp @@ -53,8 +53,8 @@ RageLog* LOG; // global and accessable from anywhere in the program * map/unmap, using any mechanism to generate unique IDs. */ static map LogMaps; -#define LOG_PATH "Logs/log.txt" -#define INFO_PATH "Logs/info.txt" +#define LOG_PATH "/Logs/log.txt" +#define INFO_PATH "/Logs/info.txt" static RageFile *g_fileLog, *g_fileInfo; @@ -83,10 +83,6 @@ RageLog::RageLog() m_bInfoToDisk = false; m_bFlush = false; m_bShowLogOutput = false; - - // delete old log files - remove( LOG_PATH ); - remove( INFO_PATH ); } RageLog::~RageLog()