http://bugs.winehq.org/show_bug.cgi?id=58202
Andrew Nguyen arethusa26@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |kernel32 Keywords| |download Status|UNCONFIRMED |NEW URL| |https://radioddity.s3.amazo | |naws.com/2021-01-27_GD-73_v | |1.06_update_package.zip Ever confirmed|0 |1
--- Comment #8 from Andrew Nguyen arethusa26@gmail.com --- The application is affected by the issue described in bug 56160. The english.lang file in the application directory is encoded in UTF-16LE without a BOM. This encoding is not correctly identified in the existing Wine profile string implementation, so the application's calls to GetPrivateProfileStringW yield an empty string instead of an expected UI string.
As a workaround, converting english.lang to use UTF-8 encoding with iconv does allow the application to successfully retrieve the UI strings in the file. Something like "iconv -f UTF-16LE -t UTF-8 < english.lang > english.lang.utf8 && mv english.lang.utf8 english.lang" would do the trick to replace the existing english.lang file with a new UTF-8 encoded version.