From eccaf9d775d116b7786b5a94f5384396027078ed Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 21 Jan 2004 01:51:38 +0000 Subject: [PATCH] fix uninitialized variable --- stepmania/src/RageLog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/RageLog.cpp b/stepmania/src/RageLog.cpp index 1d856e76ca..ec66bf1ff7 100644 --- a/stepmania/src/RageLog.cpp +++ b/stepmania/src/RageLog.cpp @@ -101,6 +101,7 @@ RageLog::RageLog() m_bEnabled = true; m_bFlush = false; m_bTimestamping = false; + m_bShowLogOutput = false; // delete old log files remove( LOG_PATH );