Do not force full bg brightness on beginner-only songs.

This commit is contained in:
Kyzentun Keeslala
2015-11-10 01:08:16 -07:00
parent 65c84ef7dc
commit 23d6c06f49
2 changed files with 10 additions and 0 deletions
+5
View File
@@ -939,9 +939,14 @@ void BrightnessOverlay::SetActualBrightness()
float fBaseBGBrightness = g_fBGBrightness;
// Revision: Themes that implement a training mode should handle the
// brightness for it. The engine should not force the brightness for
// anything. -Kyz
/*
// HACK: Always show training in full brightness
if( GAMESTATE->m_pCurSong && GAMESTATE->m_pCurSong->IsTutorial() )
fBaseBGBrightness = 1.0f;
*/
fLeftBrightness *= fBaseBGBrightness;
fRightBrightness *= fBaseBGBrightness;