summaryrefslogtreecommitdiff
path: root/game/05_init.rpy
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-12-29 18:01:12 -0300
committerJesusaves <cpntb1@ymail.com>2020-12-29 18:01:12 -0300
commit563ee9b2fa01d56402af54258d9f50c6c4b83978 (patch)
tree51ed6e24014e946c865feda116f299b8c16f1438 /game/05_init.rpy
parenta4eee47265e06d302fc482e68a2abcdd6cd97c81 (diff)
downloadclient-563ee9b2fa01d56402af54258d9f50c6c4b83978.tar.gz
client-563ee9b2fa01d56402af54258d9f50c6c4b83978.tar.bz2
client-563ee9b2fa01d56402af54258d9f50c6c4b83978.tar.xz
client-563ee9b2fa01d56402af54258d9f50c6c4b83978.zip
Disable screen prediction entirely.
Probably not needed, but it worked so smoothly on mobile, that I made it final.
Diffstat (limited to 'game/05_init.rpy')
-rw-r--r--game/05_init.rpy12
1 files changed, 12 insertions, 0 deletions
diff --git a/game/05_init.rpy b/game/05_init.rpy
index c82f27b..60b8878 100644
--- a/game/05_init.rpy
+++ b/game/05_init.rpy
@@ -28,6 +28,11 @@ label prestart:
tr_uptodate=False
tr_memcheck=False
session_id=uuid.uuid4().hex
+ config.predict_screens=False
+ config.predict_screen_statements=False
+ config.predict_file_pages=False
+ config.predict_statements_callback=None
+ config.predict_statements=0
return
label splashscreen:
@@ -61,3 +66,10 @@ init 2 python:
config.overlay_functions.append(TermWatcher)
+ # Do not attempt to predict screens: They may need unitialized data
+ config.predict_screens=False
+ config.predict_screen_statements=False
+ config.predict_file_pages=False
+ config.predict_statements_callback=None
+ config.predict_statements=0
+