diff --git a/game/screens.rpy b/game/screens.rpy index ae4f522..6be62fb 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -307,7 +307,8 @@ style choice_vbox: style choice_button is default: properties gui.button_properties("choice_button") - + activate_sound "audio/ui/uiRollover.wav" + style choice_button_text is default: properties gui.button_text_properties("choice_button") @@ -1430,8 +1431,8 @@ screen confirm(message, yes_action, no_action): xalign 0.5 spacing 150 - textbutton _("Yes") action yes_action - textbutton _("No") action no_action + textbutton _("Yes") activate_sound "audio/ui/uiClick.wav" action yes_action + textbutton _("No") activate_sound "audio/ui/uiBack.wav" action no_action ## Right-click and escape answer "no". key "game_menu" action no_action