From 6b7b595b9f3863bb4d412ebf0284f0d7e8aa1e37 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Mon, 5 Jun 2006 10:01:30 +0000 Subject: [PATCH] don't use 'dark' in bgbrightness. That string is also the name of a mod and other languages do not translate to the same work as English does --- stepmania/src/ScreenOptionsMasterPrefs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/ScreenOptionsMasterPrefs.cpp b/stepmania/src/ScreenOptionsMasterPrefs.cpp index d91f0fe6fd..ddb3e7b91b 100644 --- a/stepmania/src/ScreenOptionsMasterPrefs.cpp +++ b/stepmania/src/ScreenOptionsMasterPrefs.cpp @@ -298,7 +298,7 @@ static void BGBrightnessNoZero( int &sel, bool ToSel, const ConfOption *pConfOpt static void BGBrightnessOrStatic( int &sel, bool ToSel, const ConfOption *pConfOption ) { - const float mapping[] = { 0.2f,0.2f,0.4f,0.7f }; + const float mapping[] = { 0.25f,0.25f,0.5f,0.75f }; MoveMap( sel, PREFSMAN->m_fBGBrightness, ToSel, mapping, ARRAYSIZE(mapping) ); if( ToSel && !PREFSMAN->m_bSongBackgrounds ) @@ -587,7 +587,7 @@ static void InitializeConfOptions() ADD( ConfOption( "RandomBackgroundMode", MovePref, "Off","Animations","Random Movies" ) ); ADD( ConfOption( "BGBrightness", BGBrightness, "|0%","|10%","|20%","|30%","|40%","|50%","|60%","|70%","|80%","|90%","|100%" ) ); ADD( ConfOption( "BGBrightnessNoZero", BGBrightnessNoZero, "|10%","|20%","|30%","|40%","|50%","|60%","|70%","|80%","|90%","|100%" ) ); - ADD( ConfOption( "BGBrightnessOrStatic", BGBrightnessOrStatic, "Disabled","Dark","Dim","Bright" ) ); + ADD( ConfOption( "BGBrightnessOrStatic", BGBrightnessOrStatic, "Disabled","25% Bright","50% Bright","75% Bright" ) ); ADD( ConfOption( "ShowDanger", MovePref, "Hide","Show" ) ); ADD( ConfOption( "ShowDancingCharacters", MovePref, "Default to Off","Default to Random","Select" ) ); ADD( ConfOption( "ShowBeginnerHelper", MovePref, "Off","On" ) );