Hi,
after installation, the game is missing most of the images. It can be easily seen in Options->Graphics->Artist priority. The reason for this are missing directories with names
I could work around the issue by symlinking:
this makes the images work (don't know about quality, it is used as a fallback/lower res version for thumbnails? IDK)
Looking inside the Windows file, it probably suffers the same problem.
after installation, the game is missing most of the images. It can be easily seen in Options->Graphics->Artist priority. The reason for this are missing directories with names
TiTS/resources/app/resources/img/*/x2/
(the x2 directory is missing).I could work around the issue by symlinking:
Code:
cd ~/Games/TiTS/resources/app/resources/img
for i in * ; do ln -s "x1" "$i/x2" ; done
this makes the images work (don't know about quality, it is used as a fallback/lower res version for thumbnails? IDK)
Looking inside the Windows file, it probably suffers the same problem.