mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 21:53:51 +00:00
Fix incorrect error message
This commit is contained in:
parent
3747843c92
commit
325d208b4a
1 changed files with 1 additions and 1 deletions
|
@ -505,7 +505,7 @@ bool Launcher::MainDialog::writeSettings()
|
||||||
catch (std::exception& e) {
|
catch (std::exception& e) {
|
||||||
std::string msg = "<br><b>Error writing settings.cfg</b><br><br>" +
|
std::string msg = "<br><b>Error writing settings.cfg</b><br><br>" +
|
||||||
settingsPath + "<br><br>" + e.what();
|
settingsPath + "<br><br>" + e.what();
|
||||||
cfgError(tr("Error reading OpenMW configuration file"), tr(msg.c_str()));
|
cfgError(tr("Error writing user settings file"), tr(msg.c_str()));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue