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()