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

This commit is contained in:
scrawl 2014-05-28 22:32:26 +02:00
parent 41a04b9c65
commit c6a4506ac2

View file

@ -61,7 +61,7 @@ namespace MWGui
} }
catch (const std::exception& error) catch (const std::exception& error)
{ {
printError (std::string ("An exception has been thrown: ") + error.what()); printError (std::string ("Error: ") + error.what());
} }
return false; return false;
@ -190,7 +190,7 @@ namespace MWGui
} }
catch (const std::exception& error) catch (const std::exception& error)
{ {
printError (std::string ("An exception has been thrown: ") + error.what()); printError (std::string ("Error: ") + error.what());
} }
} }
} }