diff options
author | brunzelchen <brunzelchen@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-06-28 15:42:13 +0000 |
---|---|---|
committer | brunzelchen <brunzelchen@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-06-28 15:42:13 +0000 |
commit | 075cb824a31c5e6e1cc6ee6f0087ac5598ba003a (patch) | |
tree | 79c6ab9714b3de00fad987520d1725842fccb19d /Game/Code/Screens/UScreenOptionsSound.pas | |
parent | 4bde4923ef5b947d11ee4eb6f99d30b5ea43bce0 (diff) | |
download | usdx-075cb824a31c5e6e1cc6ee6f0087ac5598ba003a.tar.gz usdx-075cb824a31c5e6e1cc6ee6f0087ac5598ba003a.tar.xz usdx-075cb824a31c5e6e1cc6ee6f0087ac5598ba003a.zip |
- new option "PossibleScore": show max possible score in singscreen (toggle on/off with "S")
- fade the "ball" also
- fixed screensong preview volume
- update of acinerella
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/1.0.1 Challenge MOD@2565 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | Game/Code/Screens/UScreenOptionsSound.pas | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Game/Code/Screens/UScreenOptionsSound.pas b/Game/Code/Screens/UScreenOptionsSound.pas index 6735abea..b9969aa5 100644 --- a/Game/Code/Screens/UScreenOptionsSound.pas +++ b/Game/Code/Screens/UScreenOptionsSound.pas @@ -40,6 +40,7 @@ begin begin
Ini.Save;
Music.PlayBack;
+ ScreenSong.MP3Volume := Ini.PreviewVolume * 10;
FadeTo(@ScreenOptions);
end;
SDLK_RETURN:
@@ -47,6 +48,7 @@ begin if SelInteraction = 6 then begin
Ini.Save;
Music.PlayBack;
+ ScreenSong.MP3Volume := Ini.PreviewVolume * 10;
FadeTo(@ScreenOptions);
end;
end;
|