forked from teamnwah/openmw-tes3coop
Make console error prefix slightly less technical (see https://bugs.openmw.org/issues/1194#note-2)
This commit is contained in:
parent
41a04b9c65
commit
c6a4506ac2
1 changed files with 2 additions and 2 deletions
|
@ -61,7 +61,7 @@ namespace MWGui
|
|||
}
|
||||
catch (const std::exception& error)
|
||||
{
|
||||
printError (std::string ("An exception has been thrown: ") + error.what());
|
||||
printError (std::string ("Error: ") + error.what());
|
||||
}
|
||||
|
||||
return false;
|
||||
|
@ -190,7 +190,7 @@ namespace MWGui
|
|||
}
|
||||
catch (const std::exception& error)
|
||||
{
|
||||
printError (std::string ("An exception has been thrown: ") + error.what());
|
||||
printError (std::string ("Error: ") + error.what());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue