If you set images with winset escaped, that are on subfolders and that are already set on skin, they fail
Numbered Steps to Reproduce Problem:
Set images on subfolders on the skin file
winset the same images directly, properly escaped
see them fail
Code Snippet (if applicable) to Reproduce Problem:
var/tmp/list/imagelist=('A.png','B.png','C.png','D.png')
winset(src, control, "image=\"[imagelist[1]]\"")
Expected Results:
Images on subfolders don't fail to be winsetted escaped just because they are being used on the skin
Actual Results:
Images on subfolders fail to be winsetted escaped just because they are being used on the skin
Does the problem occur:
Every time? Or how often? Very often
In other games? Yes
In other user accounts? Yes
On other computers? Yes
When does the problem NOT occur?Never
Workarounds:
Winset the image using the ref:
winset(src, control, "image=\ref[fcopy_rsc('file.png')]")
or winset the image directly (making image w spaces on the path fail)
winset(src, control, "image='A.png'")
or don't have images manually set on the skin if you're going to use them again