Make console error prefix slightly less technical (see https://bugs.openmw.org/issues/1194#note-2)

deque
scrawl 11 years ago
parent 41a04b9c65
commit c6a4506ac2

@ -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…
Cancel
Save