diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-18 23:19:00 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-18 23:19:00 -0300 |
commit | 4d16b944d6a9db15f6cf36e3989d751ab47af5c7 (patch) | |
tree | ca137ae2ae3e1601f64455109605e6dd5713111b /game | |
parent | cd883e32a759c720fdd1ae56c2d03f01c3f7ca9d (diff) | |
download | client-4d16b944d6a9db15f6cf36e3989d751ab47af5c7.tar.gz client-4d16b944d6a9db15f6cf36e3989d751ab47af5c7.tar.bz2 client-4d16b944d6a9db15f6cf36e3989d751ab47af5c7.tar.xz client-4d16b944d6a9db15f6cf36e3989d751ab47af5c7.zip |
As we now are saving all assets to save dir regardless of OS, some checks
must be made always true
Diffstat (limited to 'game')
-rw-r--r-- | game/03_init.rpy | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/game/03_init.rpy b/game/03_init.rpy index 0f5cfd3..9524dfa 100644 --- a/game/03_init.rpy +++ b/game/03_init.rpy @@ -204,7 +204,7 @@ init python: name = tuple(name.split()) #d = renpy.renpy.easy.displayable(where) - if renpy.android: + if True or renpy.android: d=ExtraImage(where) else: d = renpy.renpy.easy.displayable(where) @@ -244,7 +244,7 @@ init python: if ext in [".png", ".jpg", ".jpeg"]: ext=".webp" # Otherwise, preserve extension. - if renpy.android: + if True or renpy.android: addr="extra_%s%s" % (img.replace(" ", "_"), ext) else: addr="extra/%s%s" % (img.replace(" ", "_"), ext) @@ -263,7 +263,7 @@ init python: f.write(x.content) f.close() # Android needs paths to be saved by full - if renpy.android: + if True or renpy.android: addr=get_path(addr) path=((img, addr)) persistent.allfiles.append(path) |