From 4d16b944d6a9db15f6cf36e3989d751ab47af5c7 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 18 Dec 2020 23:19:00 -0300 Subject: As we now are saving all assets to save dir regardless of OS, some checks must be made always true --- game/03_init.rpy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'game') 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) -- cgit v1.2.3-70-g09d2