diff options
author | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-06-09 10:10:25 +0000 |
---|---|---|
committer | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-06-09 10:10:25 +0000 |
commit | 141878175d76d013be3ec8fb9fd0a58dc9b0d3eb (patch) | |
tree | cd8ff3b5a7b1a70d373d518acc351d606aecae14 | |
parent | 6130b0841429920015301a661e5133cfd1ed3cb3 (diff) | |
download | usdx-141878175d76d013be3ec8fb9fd0a58dc9b0d3eb.tar.gz usdx-141878175d76d013be3ec8fb9fd0a58dc9b0d3eb.tar.xz usdx-141878175d76d013be3ec8fb9fd0a58dc9b0d3eb.zip |
Added Preview Volume and Fading to Sound Options
Changed Themes to Fit these changes
Updated Language Files
Some fixes in SelectSlide
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@251 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r-- | Game/Code/Classes/UThemes.pas | 9 | ||||
-rw-r--r-- | Game/Code/Menu/UMenuSelectSlide.pas | 10 | ||||
-rw-r--r-- | Game/Code/Screens/UScreenOptionsSound.pas | 11 | ||||
-rw-r--r-- | Languages/English.ini | 2 | ||||
-rw-r--r-- | Languages/German.ini | 2 | ||||
-rw-r--r-- | Languages/readme.txt | 4 | ||||
-rw-r--r-- | Skins/Deluxe/Autum.ini | 1 | ||||
-rw-r--r-- | Skins/Deluxe/Blue.ini | 1 | ||||
-rw-r--r-- | Skins/Deluxe/Summer.ini | 1 | ||||
-rw-r--r-- | Skins/Deluxe/Winter.ini | 1 | ||||
-rw-r--r-- | Skins/Deluxe/[main]selectbg.jpg | bin | 0 -> 4100 bytes | |||
-rw-r--r-- | Themes/Classic.ini | 42 | ||||
-rw-r--r-- | Themes/Deluxe.ini | 134 |
13 files changed, 162 insertions, 56 deletions
diff --git a/Game/Code/Classes/UThemes.pas b/Game/Code/Classes/UThemes.pas index 8a6a7b9b..78875dec 100644 --- a/Game/Code/Classes/UThemes.pas +++ b/Game/Code/Classes/UThemes.pas @@ -446,7 +446,9 @@ type SelectClickAssist: TThemeSelect;
SelectBeatClick: TThemeSelect;
SelectThreshold: TThemeSelect;
- //SelectTwoPlayerMode: TThemeSelect;
+ //Song Preview
+ SelectSlidePreviewVolume: TThemeSelectSlide;
+ SelectSlidePreviewFading: TThemeSelectSlide;
ButtonExit: TThemeButton;
end;
@@ -1209,7 +1211,10 @@ begin ThemeLoadSelect(OptionsSound.SelectClickAssist, 'OptionsSoundSelectClickAssist');
ThemeLoadSelect(OptionsSound.SelectBeatClick, 'OptionsSoundSelectBeatClick');
ThemeLoadSelect(OptionsSound.SelectThreshold, 'OptionsSoundSelectThreshold');
- //ThemeLoadSelect(OptionsSound.SelectTwoPlayerMode, 'OptionsSoundSelectTwoPlayerMode');
+ //Song Preview
+ ThemeLoadSelectSlide(OptionsSound.SelectSlidePreviewVolume, 'OptionsSoundSelectSlidePreviewVolume');
+ ThemeLoadSelectSlide(OptionsSound.SelectSlidePreviewFading, 'OptionsSoundSelectSlidePreviewFading');
+
ThemeLoadButton(OptionsSound.ButtonExit, 'OptionsSoundButtonExit');
// Options Lyrics
diff --git a/Game/Code/Menu/UMenuSelectSlide.pas b/Game/Code/Menu/UMenuSelectSlide.pas index f18b45cd..c1ccad6d 100644 --- a/Game/Code/Menu/UMenuSelectSlide.pas +++ b/Game/Code/Menu/UMenuSelectSlide.pas @@ -291,8 +291,8 @@ var maxlength: Real;
I: Integer;
begin
- SetFontStyle(TextOpt[0].Style);
- SetFontSize(TextOpt[0].Size);
+ SetFontStyle(0{Text.Style});
+ SetFontSize(Text.Size);
maxlength := 0;
for I := low(TextOptT) to high (TextOptT) do
@@ -329,7 +329,11 @@ begin //Generate Positions
//TextOpt[I].X := TextureSBG.X + 20 + (TextureSBG.W / Lines) * (I + 0.5);
- TextOpt[I].X := TextureSBG.X + 20 + (TextureSBG.W / Lines) * I;
+ if (I <> High(TextOpt)) OR (High(TextOpt) = 0) OR (Length(TextOptT) = Lines) then
+ TextOpt[I].X := TextureSBG.X + 20 + (TextureSBG.W / Lines) * I
+ else
+ TextOpt[I].X := TextureSBG.X + TextureSBG.W - maxlength;
+
TextOpt[I].Y := TextureSBG.Y + (TextureSBG.H / 2) - 1.5 * Text.Size{20};
//Better Look with 2 Options
diff --git a/Game/Code/Screens/UScreenOptionsSound.pas b/Game/Code/Screens/UScreenOptionsSound.pas index c99f1ef6..fb04ab64 100644 --- a/Game/Code/Screens/UScreenOptionsSound.pas +++ b/Game/Code/Screens/UScreenOptionsSound.pas @@ -35,7 +35,7 @@ begin end;
SDLK_RETURN:
begin
- if SelInteraction = 4 then begin
+ if SelInteraction = 6 then begin
Ini.Save;
Music.PlayBack;
FadeTo(@ScreenOptions);
@@ -47,14 +47,14 @@ begin InteractPrev;
SDLK_RIGHT:
begin
- if (SelInteraction >= 0) and (SelInteraction <= 3) then begin
+ if (SelInteraction >= 0) and (SelInteraction <= 5) then begin
Music.PlayOption;
InteractInc;
end;
end;
SDLK_LEFT:
begin
- if (SelInteraction >= 0) and (SelInteraction <= 3) then begin
+ if (SelInteraction >= 0) and (SelInteraction <= 5) then begin
Music.PlayOption;
InteractDec;
end;
@@ -76,6 +76,11 @@ begin AddSelect(Theme.OptionsSound.SelectBeatClick, Ini.BeatClick, IBeatClick);
AddSelect(Theme.OptionsSound.SelectThreshold, Ini.Threshold, IThreshold);
+ //Song Preview
+ AddSelectSlide(Theme.OptionsSound.SelectSlidePreviewVolume, Ini.PreviewVolume, IPreviewVolume);
+ AddSelectSlide
+ (Theme.OptionsSound.SelectSlidePreviewFading, Ini.PreviewFading, IPreviewFading);
+
AddButton(Theme.OptionsSound.ButtonExit);
if (Length(Button[0].Text)=0) then
AddButtonText(14, 20, Theme.Options.Description[7]);
diff --git a/Languages/English.ini b/Languages/English.ini index 317b6d8c..3bef68cc 100644 --- a/Languages/English.ini +++ b/Languages/English.ini @@ -60,6 +60,8 @@ SING_OPTIONS_SOUND_CLICK_ASSIST=Click assist SING_OPTIONS_SOUND_BEAT_CLICK=Beat click
SING_OPTIONS_SOUND_THRESHOLD=Threshold
SING_OPTIONS_SOUND_TWO_PLAYERS_MODE=Two players mode
+SING_OPTIONS_SOUND_PREVIEWVOLUME=Preview Volume
+SING_OPTIONS_SOUND_PREVIEWFADING=Preview Fading
SING_OPTIONS_LYRICS_WHEREAMI=Options Lyrics
SING_OPTIONS_LYRICS_DESC=lyrics settings
diff --git a/Languages/German.ini b/Languages/German.ini index 4713ae48..df4e2397 100644 --- a/Languages/German.ini +++ b/Languages/German.ini @@ -60,6 +60,8 @@ SING_OPTIONS_SOUND_CLICK_ASSIST=Click-Assistent SING_OPTIONS_SOUND_BEAT_CLICK=Beat-Click
SING_OPTIONS_SOUND_THRESHOLD=Rauschunterdr.
SING_OPTIONS_SOUND_TWO_PLAYERS_MODE=2-Spieler-Modus
+SING_OPTIONS_SOUND_PREVIEWVOLUME=Vorschau Lautst.
+SING_OPTIONS_SOUND_PREVIEWFADING=Vorschau Fading
SING_OPTIONS_LYRICS_WHEREAMI=Optionen Lyrics
SING_OPTIONS_LYRICS_DESC=Einstellungen für die Lyrics
diff --git a/Languages/readme.txt b/Languages/readme.txt index 132f0c80..98026f10 100644 --- a/Languages/readme.txt +++ b/Languages/readme.txt @@ -13,6 +13,10 @@ SING_TOOLS=Tools SING_STATS=stats
SING_STATS_DESC=View the Statistics
+#Sound Options Screen
+SING_OPTIONS_SOUND_PREVIEWVOLUME=Preview Volume
+SING_OPTIONS_SOUND_PREVIEWFADING=Preview Fading
+
#Advanced Options Screen
SING_OPTIONS_ADVANCED=advanced
SING_OPTIONS_ADVANCED_DESC=advanced options
diff --git a/Skins/Deluxe/Autum.ini b/Skins/Deluxe/Autum.ini index 4be2a132..33adc9d3 100644 --- a/Skins/Deluxe/Autum.ini +++ b/Skins/Deluxe/Autum.ini @@ -15,6 +15,7 @@ Color=Orange Button = [main]button.jpg
ButtonF = [main]buttonf.jpg
MainBar = [main]mainBar.jpg
+SelectBG = [main]selectbg.jpg
#Backgrounds
LoadingBG = [bg-load]autum.jpg
diff --git a/Skins/Deluxe/Blue.ini b/Skins/Deluxe/Blue.ini index 7ef40741..7f86780a 100644 --- a/Skins/Deluxe/Blue.ini +++ b/Skins/Deluxe/Blue.ini @@ -15,6 +15,7 @@ Color=Blue Button = [main]button.jpg
ButtonF = [main]buttonf.jpg
MainBar = [main]mainBar.jpg
+SelectBG = [main]selectbg.jpg
#Backgrounds
LoadingBG = [bg-load]blue.jpg
diff --git a/Skins/Deluxe/Summer.ini b/Skins/Deluxe/Summer.ini index 72126d08..040fafc6 100644 --- a/Skins/Deluxe/Summer.ini +++ b/Skins/Deluxe/Summer.ini @@ -15,6 +15,7 @@ Color=Blue Button = [main]button.jpg
ButtonF = [main]buttonf.jpg
MainBar = [main]mainBar.jpg
+SelectBG = [main]selectbg.jpg
#Backgrounds
LoadingBG = [bg-load]summer.jpg
diff --git a/Skins/Deluxe/Winter.ini b/Skins/Deluxe/Winter.ini index 00db0467..c3b6755b 100644 --- a/Skins/Deluxe/Winter.ini +++ b/Skins/Deluxe/Winter.ini @@ -15,6 +15,7 @@ Color=Blue Button = [main]button.jpg
ButtonF = [main]buttonf.jpg
MainBar = [main]mainBar.jpg
+SelectBG = [main]selectbg.jpg
#Backgrounds
LoadingBG = [bg-load]winter.jpg
diff --git a/Skins/Deluxe/[main]selectbg.jpg b/Skins/Deluxe/[main]selectbg.jpg Binary files differnew file mode 100644 index 00000000..98dcb671 --- /dev/null +++ b/Skins/Deluxe/[main]selectbg.jpg diff --git a/Themes/Classic.ini b/Themes/Classic.ini index 13b59e2e..1b5fb857 100644 --- a/Themes/Classic.ini +++ b/Themes/Classic.ini @@ -2722,11 +2722,51 @@ SBGDColor = Gray STColor = White
STDColor = GrayDark
-[OptionsSoundButtonExit]
+[OptionsSoundSelectSlidePreviewVolume]
+Tex =MainBar
+TexSBG =MainBar
+Text=SING_OPTIONS_SOUND_PREVIEWVOLUME
+X = 40
+Y = 305
+W = 230
+H = 70
+SkipX = 50
+
+Color = ColorDark
+DColor = Gray
+TColor = White
+TDColor = White
+SBGTex =MainBar
+SBGColor = ColorDark
+SBGDColor = Gray
+STColor = White
+STDColor = GrayDark
+
+[OptionsSoundSelectSlidePreviewFading]
+Tex =MainBar
+TexSBG =MainBar
+Text=SING_OPTIONS_SOUND_PREVIEWFADING
X = 40
Y = 360
W = 230
H = 70
+SkipX = 50
+
+Color = ColorDark
+DColor = Gray
+TColor = White
+TDColor = White
+SBGTex =MainBar
+SBGColor = ColorDark
+SBGDColor = Gray
+STColor = White
+STDColor = GrayDark
+
+[OptionsSoundButtonExit]
+X = 40
+Y = 415
+W = 230
+H = 70
Tex =MainBar
Color = ColorDark
DColor = Gray
diff --git a/Themes/Deluxe.ini b/Themes/Deluxe.ini index 240d674f..9423f54c 100644 --- a/Themes/Deluxe.ini +++ b/Themes/Deluxe.ini @@ -430,16 +430,16 @@ Align =2 Text=
#Variable statics and texts for song-screen in sing- and partymode
-# There can be an unlimited Number of Statics and Texts, As long
+# There can be an unlimited Number of Statics and Texts, As long
# as the numbers are in order.
# Statics that are shown in PartyMode Only are Named_
-# SongStaticParty[No]
+# SongStaticParty[No]
# Texts that are shown in PartyMode Only are Named_
-# SongTextParty[No]
+# SongTextParty[No]
# Statics that are shown in Normal Mode Only are Named_
-# SongStaticNonParty[No]
+# SongStaticNonParty[No]
# Texts that are shown in Normal Mode Only are Named_
-# SongTextNonParty[No]
+# SongTextNonParty[No]
#Here are the ones for singmode
[SongStaticNonParty1]
@@ -2908,7 +2908,7 @@ Text=SING_LEGEND_ESC [OptionsGameSelectPlayers]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_GAME_PLAYERS
X = 40
Y = 85
@@ -2928,7 +2928,7 @@ STDColor = GrayDark [OptionsGameSelectDifficulty]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_GAME_DIFFICULTY
X = 40
Y = 140
@@ -2949,7 +2949,7 @@ STDColor = GrayDark [OptionsGameSelectSlideLanguage]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_GAME_LANGUAGE
X = 40
Y = 195
@@ -2969,7 +2969,7 @@ STDColor = GrayDark [OptionsGameSelectTabs]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_GAME_TABS
X = 40
Y = 250
@@ -2989,7 +2989,7 @@ STDColor = GrayDark [OptionsGameSelectSlideSorting]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_GAME_SORTING
X = 40
Y = 305
@@ -3009,7 +3009,7 @@ STDColor = GrayDark [OptionsGameSelectDebug]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_GAME_DEBUG
X = 40
Y = 360
@@ -3140,7 +3140,7 @@ Text=SING_LEGEND_ESC [OptionsGraphicsSelectSlideResolution]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text=SING_OPTIONS_GRAPHICS_RESOLUTION
X = 40
Y = 85
@@ -3160,7 +3160,7 @@ STDColor = GrayDark [OptionsGraphicsSelectFullscreen]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_GRAPHICS_FULLSCREEN
X = 40
Y = 140
@@ -3180,7 +3180,7 @@ STDColor = GrayDark [OptionsGraphicsSelectDepth]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_GRAPHICS_DEPTH
X = 40
Y = 195
@@ -3200,7 +3200,7 @@ STDColor = GrayDark [OptionsGraphicsSelectOscilloscope]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_GRAPHICS_OSCILLOSCOPE
X = 40
Y = 250
@@ -3220,7 +3220,7 @@ STDColor = GrayDark [OptionsGraphicsSelectMovieSize]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_GRAPHICS_MOVIE_SIZE
X = 40
Y = 305
@@ -3351,7 +3351,7 @@ Text=SING_LEGEND_ESC [OptionsSoundSelectMicBoost]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_SOUND_MIC_BOOST
X = 40
Y = 85
@@ -3371,7 +3371,7 @@ STDColor = GrayDark [OptionsSoundSelectClickAssist]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_SOUND_CLICK_ASSIST
X = 40
Y = 140
@@ -3391,7 +3391,7 @@ STDColor = GrayDark [OptionsSoundSelectBeatClick]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_SOUND_BEAT_CLICK
X = 40
Y = 195
@@ -3411,7 +3411,7 @@ STDColor = GrayDark [OptionsSoundSelectThreshold]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_SOUND_THRESHOLD
X = 40
Y = 250
@@ -3431,7 +3431,7 @@ STDColor = GrayDark [OptionsSoundSelectTwoPlayerMode]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_SOUND_TWO_PLAYERS_MODE
X = 40
Y = 305
@@ -3449,11 +3449,51 @@ SBGDColor = Gray STColor = White
STDColor = GrayDark
-[OptionsSoundButtonExit]
+[OptionsSoundSelectSlidePreviewVolume]
+Tex =MainBar
+TexSBG =SelectBG
+Text=SING_OPTIONS_SOUND_PREVIEWVOLUME
+X = 40
+Y = 305
+W = 230
+H = 70
+SkipX = 50
+
+Color = ColorDark
+DColor = Gray
+TColor = White
+TDColor = White
+SBGTex =MainBar
+SBGColor = ColorDark
+SBGDColor = Gray
+STColor = White
+STDColor = GrayDark
+
+[OptionsSoundSelectSlidePreviewFADING]
+Tex =MainBar
+TexSBG =SelectBG
+Text=SING_OPTIONS_SOUND_PREVIEWFADING
X = 40
Y = 360
W = 230
H = 70
+SkipX = 50
+
+Color = ColorDark
+DColor = Gray
+TColor = White
+TDColor = White
+SBGTex =MainBar
+SBGColor = ColorDark
+SBGDColor = Gray
+STColor = White
+STDColor = GrayDark
+
+[OptionsSoundButtonExit]
+X = 40
+Y = 415
+W = 230
+H = 70
Tex =MainBar
Color = ColorDark
DColor = Gray
@@ -3562,7 +3602,7 @@ Text=SING_LEGEND_ESC [OptionsLyricsSelectLyricsFont]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_LYRICS_FONT
X = 40
Y = 85
@@ -3582,7 +3622,7 @@ STDColor = GrayDark [OptionsLyricsSelectLyricsEffect]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_LYRICS_EFFECT
X = 40
Y = 140
@@ -3602,7 +3642,7 @@ STDColor = GrayDark [OptionsLyricsSelectSolmization]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_LYRICS_SOLMIZATION
X = 40
Y = 195
@@ -3733,7 +3773,7 @@ Text=SING_LEGEND_ESC [OptionsThemesSelectTheme]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_THEMES_THEME
X = 40
Y = 85
@@ -3753,7 +3793,7 @@ STDColor = GrayDark [OptionsThemesSelectSkin]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_THEMES_SKIN
X = 40
Y = 140
@@ -3773,7 +3813,7 @@ STDColor = GrayDark [OptionsThemesSelectColor]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_THEMES_COLOR
X = 40
Y = 195
@@ -3904,7 +3944,7 @@ Text=SING_LEGEND_ESC [OptionsRecordSelectSlideCard]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_RECORD_CARD
X = 40
Y = 85
@@ -3925,7 +3965,7 @@ STDColor = GrayDark [OptionsRecordSelectSlideInput]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_RECORD_INPUT
X = 40
Y = 140
@@ -3946,7 +3986,7 @@ STDColor = GrayDark [OptionsRecordSelectSlideChannelL]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_RECORD_CHANNELL
X = 40
Y = 195
@@ -3967,7 +4007,7 @@ STDColor = GrayDark [OptionsRecordSelectSlideChannelR]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_RECORD_CHANNELR
X = 40
Y = 250
@@ -4099,7 +4139,7 @@ Text=SING_LEGEND_ESC [OptionsAdvancedSelectLoadAnimation]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text=SING_OPTIONS_ADVANCED_LOADANIMATION
X = 40
Y = 85
@@ -4119,7 +4159,7 @@ STDColor = GrayDark [OptionsAdvancedSelectScreenFade]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_ADVANCED_SCREENFADE
X = 40
Y = 140
@@ -4139,7 +4179,7 @@ STDColor = GrayDark [OptionsAdvancedSelectEffectSing]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_ADVANCED_EFFECTSING
X = 40
Y = 195
@@ -4159,7 +4199,7 @@ STDColor = GrayDark [OptionsAdvancedSelectLineBonus]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_GRAPHICS_LINEBONUS
X = 40
Y = 250
@@ -4179,7 +4219,7 @@ STDColor = GrayDark [OptionsAdvancedSelectSlideOnSongClick]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text=SING_OPTIONS_ADVANCED_ONSONGCLICK
X = 40
Y = 305
@@ -4199,7 +4239,7 @@ STDColor = GrayDark [OptionsAdvancedSelectAskbeforeDel]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_ADVANCED_ASKBEFOREDEL
X = 40
Y = 360
@@ -4219,7 +4259,7 @@ STDColor = GrayDark [OptionsAdvancedSelectPartyPopup]
Tex =MainBar
-TexSBG =MainBar
+TexSBG =SelectBG
Text =SING_OPTIONS_ADVANCED_PARTYPOPUP
X = 40
Y = 415
@@ -6344,7 +6384,7 @@ Text=SING_LEGEND_CONTINUE [PartyOptionsSelectLevel]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =PARTY_DIFFICULTY
X = 40
Y = 85
@@ -6365,7 +6405,7 @@ STDColor = GrayDark [PartyOptionsSelectPlayList]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =PARTY_PLAYLIST
X = 40
Y = 140
@@ -6386,7 +6426,7 @@ STDColor = GrayDark [PartyOptionsSelectPlayList2]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =PARTY_PLAYLIST
X = 40
Y = 195
@@ -6407,7 +6447,7 @@ STDColor = GrayDark [PartyOptionsSelectRounds]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =PARTY_ROUNDS
X = 40
Y = 250
@@ -6428,7 +6468,7 @@ STDColor = GrayDark [PartyOptionsSelectTeams]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =PARTY_TEAMS
X = 40
Y = 305
@@ -6449,7 +6489,7 @@ STDColor = GrayDark [PartyOptionsSelectPlayers1]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =PARTY_TEAMS_PLAYER1
X = 40
Y = 360
@@ -6470,7 +6510,7 @@ STDColor = GrayDark [PartyOptionsSelectPlayers2]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =PARTY_TEAMS_PLAYER2
X = 40
Y = 415
@@ -6491,7 +6531,7 @@ STDColor = GrayDark [PartyOptionsSelectPlayers3]
Tex = MainBar
-TexSBG = MainBar
+TexSBG =SelectBG
Text =PARTY_TEAMS_PLAYER3
X = 40
Y = 470
|