1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00

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)
{
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());
}
}
}