From 8de4da23a20e5f89bbe307e3e7fc60be5727670d Mon Sep 17 00:00:00 2001 From: Andrew Wong Date: Sun, 3 Aug 2003 09:43:47 +0000 Subject: [PATCH] fixed console screen showing up when debug mode in prefs was off --- stepmania/src/ScreenHowToPlay.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenHowToPlay.cpp b/stepmania/src/ScreenHowToPlay.cpp index e25f5d0b42..9a004d2973 100644 --- a/stepmania/src/ScreenHowToPlay.cpp +++ b/stepmania/src/ScreenHowToPlay.cpp @@ -143,7 +143,11 @@ void ScreenHowToPlay::Update( float fDelta ) { GAMESTATE->UpdateSongPosition( m_fFakeSecondsIntoSong ); m_fFakeSecondsIntoSong += fDelta; - LOG->ShowConsole(); + + // XXX: really, the prefs manager would take care of + // showing the console at the beginning of the program. + // (namely DebugMode in stepmania.ini) + // LOG->ShowConsole(); if( GAMESTATE->m_bFreeze ) {