summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-05-08 16:36:18 -0300
committerJesusaves <cpntb1@ymail.com>2021-05-08 16:36:18 -0300
commit168298c594b7bcda5b044b1537a2f240e830b766 (patch)
treea46731daeba830af7b1b5bfd108eed795fc6c52d
parentf9be76eb6391b4492e3e2987b6f24ec2343a8309 (diff)
downloadrenpy-168298c594b7bcda5b044b1537a2f240e830b766.tar.gz
renpy-168298c594b7bcda5b044b1537a2f240e830b766.tar.bz2
renpy-168298c594b7bcda5b044b1537a2f240e830b766.tar.xz
renpy-168298c594b7bcda5b044b1537a2f240e830b766.zip
Disable rollback and clean up some Ren'Py default interface good for VN only
-rw-r--r--game/options.rpy3
-rw-r--r--game/screens.rpy10
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()