diff options
-rw-r--r-- | game/01_init.rpy | 1 | ||||
-rw-r--r-- | game/screens.rpy | 12 |
2 files changed, 1 insertions, 12 deletions
diff --git a/game/01_init.rpy b/game/01_init.rpy index 5e16c9c..343b6bf 100644 --- a/game/01_init.rpy +++ b/game/01_init.rpy @@ -42,7 +42,6 @@ init -3 python: persistent.serverlist=[["TMW2", "spheres.tmw2.org", 61000]] # FIXME: Set good defaults (=bad) for Android if renpy.android: - persistent.nothreading=False persistent.ssl_enabled=False else: persistent.serverlist.append(["Localhost", "localhost", 61000]) diff --git a/game/screens.rpy b/game/screens.rpy index 21ae77e..937a6b6 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -839,17 +839,7 @@ screen preferences(): textbutton _("Disabled"): action SetVariable("debug", False) - if renpy.android: - vbox: - style_prefix "check" - null height 60 - label _("Threading:") - textbutton _("Enable"): - action SetVariable("persistent.nothreading", None) - textbutton _("Disable"): - action SetVariable("persistent.nothreading", True) - - if config.developer or debug: + showif config.developer or debug: vbox: style_prefix "check" null height 60 |