diff options
-rw-r--r-- | game/options.rpy | 3 | ||||
-rw-r--r-- | game/screens.rpy | 10 |
2 files changed, 2 insertions, 11 deletions
diff --git a/game/options.rpy b/game/options.rpy index 2dd1832..c7eb344 100644 --- a/game/options.rpy +++ b/game/options.rpy @@ -49,7 +49,8 @@ define build.name = "Mana-Launcher" define config.autoreload = False define config.save_on_mobile_background = False define config.has_autosave = False - +define config.hard_rollback_limit = 0 +define config.rollback_enabled = False ## Sounds and music ############################################################ diff --git a/game/screens.rpy b/game/screens.rpy index abd254a..b8e872c 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -253,11 +253,8 @@ screen quick_menu(): xalign 0.5 yalign 1.0 - textbutton _("Back") action Rollback() textbutton _("History") action ShowMenu('history') textbutton _("Skip") action Skip() alternate Skip(fast=True, confirm=True) - textbutton _("Auto") action Preference("auto-forward", "toggle") - textbutton _("Save") action ShowMenu('save') textbutton _("Prefs") action ShowMenu('preferences') @@ -318,11 +315,6 @@ screen navigation(): textbutton _("About") action ShowMenu("about") - if renpy.variant("pc") or (renpy.variant("web") and not renpy.variant("mobile")): - - ## Help isn't necessary or relevant to mobile devices. - textbutton _("Help") action ShowMenu("help") - if renpy.variant("pc"): ## The quit button is banned on iOS and unnecessary on Android and @@ -1371,9 +1363,7 @@ screen quick_menu(): xalign 0.5 yalign 1.0 - textbutton _("Back") action Rollback() textbutton _("Skip") action Skip() alternate Skip(fast=True, confirm=True) - textbutton _("Auto") action Preference("auto-forward", "toggle") textbutton _("Menu") action ShowMenu() |