summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-08-07 21:28:17 -0300
committerJesusaves <cpntb1@ymail.com>2021-08-07 21:28:17 -0300
commit93e58fffa8284f61dd7fc493c6e76c3331745d18 (patch)
treef4a47eab28f39a372778b4fd63c0df643f22358e
parent127faf7bba5ca64a8bf6c22f7e46abe8a98f8084 (diff)
downloadclient-93e58fffa8284f61dd7fc493c6e76c3331745d18.tar.gz
client-93e58fffa8284f61dd7fc493c6e76c3331745d18.tar.bz2
client-93e58fffa8284f61dd7fc493c6e76c3331745d18.tar.xz
client-93e58fffa8284f61dd7fc493c6e76c3331745d18.zip
Fix conditional
-rw-r--r--game/01_init.rpy4
1 files changed, 2 insertions, 2 deletions
diff --git a/game/01_init.rpy b/game/01_init.rpy
index 7b18a09..2227132 100644
--- a/game/01_init.rpy
+++ b/game/01_init.rpy
@@ -291,7 +291,7 @@ init -3 python:
# File Managment Functions
def get_path(path):
- if True or renpy.android:
+ if not renpy.windows:
path=path.replace("/", "_")
#return renpy.loader.get_path(path)
return renpy.config.savedir + "/" + path
@@ -299,7 +299,7 @@ init -3 python:
return renpy.loader.get_path(path)
def get_path_if_exists(path):
- if True or renpy.android:
+ if not renpy.windows:
path=path.replace("/", "_")
#return renpy.loader.get_path(path)
return renpy.config.savedir + "/" + path