1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-03 09:49:40 +00:00

Use the correct encoding for the ini importer

This commit is contained in:
pvdk 2014-02-25 18:15:29 +01:00
parent 6b9082c6ba
commit 05f8af0757

View file

@ -152,11 +152,11 @@ void Wizard::MainWizard::runSettingsImporter()
QString language(field(QLatin1String("installation.language")).toString());
if (language == QLatin1String("Polish")) {
arguments.append(QLatin1String("windows-1250"));
arguments.append(QLatin1String("win1250"));
} else if (language == QLatin1String("Russian")) {
arguments.append(QLatin1String("windows-1251"));
arguments.append(QLatin1String("win1251"));
} else {
arguments.append(QLatin1String("windows-1252"));
arguments.append(QLatin1String("win1252"));
}
// Now the paths