diff options
-rw-r--r-- | game/options.rpy | 1 | ||||
-rw-r--r-- | game/screens.rpy | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/game/options.rpy b/game/options.rpy index 63b69c4..5222f90 100644 --- a/game/options.rpy +++ b/game/options.rpy @@ -251,6 +251,7 @@ init python: ## Other build configuration config.window_icon="icon.ico" build.include_i686=False + build.include_update=True # Remove renpy license from About. LGPL and MIT doesn't require it. # Instead, leave only the link to Ren'Py licenses and legales. diff --git a/game/screens.rpy b/game/screens.rpy index 473bdc9..95b8d22 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -315,6 +315,9 @@ screen navigation(): textbutton _("Main Menu") action MainMenu() + if persistent.host is not None: + textbutton _("Update") action updater.Update(persistent.host+'/dist') + textbutton _("About") action ShowMenu("about") if renpy.variant("pc"): |