diff options
Diffstat (limited to 'src/screens/UScreenOptionsSound.pas')
-rw-r--r-- | src/screens/UScreenOptionsSound.pas | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/screens/UScreenOptionsSound.pas b/src/screens/UScreenOptionsSound.pas index b1179282..4e5c9d74 100644 --- a/src/screens/UScreenOptionsSound.pas +++ b/src/screens/UScreenOptionsSound.pas @@ -98,6 +98,7 @@ begin SDLK_RIGHT: begin if (SelInteraction >= 0) and (SelInteraction < 6) then +// if (SelInteraction >= 0) and (SelInteraction < 8) then begin AudioPlayback.PlaySound(SoundLib.Option); InteractInc; @@ -106,6 +107,7 @@ begin SDLK_LEFT: begin if (SelInteraction >= 0) and (SelInteraction < 6) then +// if (SelInteraction >= 0) and (SelInteraction < 8) then begin AudioPlayback.PlaySound(SoundLib.Option); InteractDec; @@ -164,6 +166,7 @@ begin AddButton(Theme.OptionsSound.ButtonExit); if (Length(Button[0].Text) = 0) then AddButtonText(20, 5, Theme.Options.Description[7]); +// AddButtonText(20, 5, Theme.Options.Description[10]); Interaction := 0; end; |