Hello all, wondering if anyone has ran into the error "Fail to load img/system/ロゴ.png", which I assume is the logo file?
I have tried copying another picture and rename it to be ロゴ.png but error persists.
I am using Japanese emulator to launch the game.
Any help would be much appreciated, thank you!
it is often caused by one of these 3 cases:
1) corrupted japanese filename
2) some japanese-named parameter has been translated to english (e.g. filename was considered equal to some variable name/value and this variable name/value has been auto-translated)
3) game source resides on a non-windows file system (e.g. ext4) and the game is launched using non-windows operating system (e.g. ubuntu) - rpgm games exploit case insensitive file lookup available on windows-friendly file systems like exfat: game needs a file Some_file.rpgm but on a disk there is a file Some_File.rpgm (note case difference). Such a lookup resolves successfully on exfat but fails on ext4
how to fix 1:
on windows use winrar and select japanese encoding in its menu before unarchivation
on ubuntu use unzip -O shift-jis your_archive.zip
how to fix 2:
get original game files and somehow search for this filename
then manually revert autotranslated row
how to fix 3:
don't know any elegant fix