diff --git a/stepmania/src/ThemeManager.cpp b/stepmania/src/ThemeManager.cpp index 97c4781fbe..46987cfb65 100644 --- a/stepmania/src/ThemeManager.cpp +++ b/stepmania/src/ThemeManager.cpp @@ -156,8 +156,6 @@ void ThemeManager::LoadThemeRecursive( deque &theme, CString sThemeName ) if( m_sCurLanguage.CompareNoCase(BASE_LANGUAGE) ) t.iniMetrics.ReadFile( GetLanguageIniPath(sThemeName,m_sCurLanguage) ); - LOG->Trace("load '%s', %i", - sThemeName.c_str(), loaded_base); /* Read the fallback theme. If no fallback theme is specified, and we havn't * already loaded it, fall back on BASE_THEME_NAME. That way, default theme * fallbacks can be disabled with "FallbackTheme=". */ @@ -166,7 +164,6 @@ void ThemeManager::LoadThemeRecursive( deque &theme, CString sThemeName ) { if( sThemeName.CompareNoCase( BASE_THEME_NAME ) && !loaded_base ) sFallback = BASE_THEME_NAME; - LOG->Trace("no fallback, '%s'", sFallback.c_str()); } if( !sFallback.empty() ) LoadThemeRecursive( theme, sFallback ); diff --git a/stepmania/src/arch/Lights/LightsDriver_LinuxParallel.cpp b/stepmania/src/arch/Lights/LightsDriver_LinuxParallel.cpp index 31b9471cde..c2b39fda4e 100644 --- a/stepmania/src/arch/Lights/LightsDriver_LinuxParallel.cpp +++ b/stepmania/src/arch/Lights/LightsDriver_LinuxParallel.cpp @@ -12,6 +12,9 @@ #include "GameState.h" #include "Game.h" +static const int PORT_ADDRESS = 0x378; +static const bool SCREEN_DEBUG = false; + LightsDriver_LinuxParallel::LightsDriver_LinuxParallel() { // Give port's permissions and reset all bits to zero diff --git a/stepmania/src/arch/Lights/LightsDriver_LinuxParallel.h b/stepmania/src/arch/Lights/LightsDriver_LinuxParallel.h index 7c6d26eb1d..fee05c8c0e 100644 --- a/stepmania/src/arch/Lights/LightsDriver_LinuxParallel.h +++ b/stepmania/src/arch/Lights/LightsDriver_LinuxParallel.h @@ -10,12 +10,9 @@ #include "LightsDriver.h" -const int PORT_ADDRESS = 0x378; -const bool SCREEN_DEBUG = false; - class LightsDriver_LinuxParallel : public LightsDriver { - public: +public: LightsDriver_LinuxParallel(); virtual ~LightsDriver_LinuxParallel();