Revert "MOHAWK: Fix French sheila version not starting. Bug #13920"

This reverts commit e3179f773adee9bc1e91da39dd4fad60b5bf6748.
This commit is contained in:
Eugene Sandulenko 2023-12-14 16:43:53 +01:00
parent 61c734fcb4
commit 4cfa5e5ce6
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -302,10 +302,7 @@ void MohawkEngine_LivingBooks::pauseEngineIntern(bool pause) {
void MohawkEngine_LivingBooks::loadBookInfo(const Common::String &filename) {
_bookInfoFile.allowNonEnglishCharacters();
// WORKAROUND: Sheila FR has garbage in INI file. Running parser in non-strict mode
// and ignore non-ASCII characters. Bug #13920
if (!_bookInfoFile.loadFromFile(filename, false))
if (!_bookInfoFile.loadFromFile(filename))
error("Could not open %s as a config file", filename.c_str());
_title = getStringFromConfig("BookInfo", "title");