diff --git a/game/screens.rpy b/game/screens.rpy index 2d01c74..253ebf7 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -697,9 +697,9 @@ screen updates(): action ToggleScreenVariable('input_on') style_prefix "quick" if persistent.updateresult != "No new version is available": - textbutton _("Update Now!") activate_sound "audio/ui/uiNotification.wav" action [updater.Update(persistent.updateWebServer, force=False)] + textbutton _("{size=36}Update Now!\n{/size}") activate_sound "audio/ui/uiNotification.wav" action [updater.Update(persistent.updateWebServer, force=False)] else: - textbutton _("Update Now!") activate_sound "audio/ui/uiBack.wav" action [Notify("Nothing to update to!")] + textbutton _("{size=36}Update Now!\n{/size}") activate_sound "audio/ui/uiBack.wav" action [Notify("Nothing to update to!")] use extrasnavigation ## Load and Save screens #######################################################