mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-07-21 22:44:05 +00:00
fixed dialogue script error reporting
This commit is contained in:
parent
fd5671e6db
commit
89c7936534
1 changed files with 11 additions and 11 deletions
|
@ -211,7 +211,7 @@ namespace MWDialogue
|
|||
}
|
||||
catch (const std::exception& error)
|
||||
{
|
||||
printError (std::string ("An exception has been thrown: ") + error.what());
|
||||
std::cerr << std::string ("Dialogue error: An exception has been thrown: ") + error.what() << std::endl;
|
||||
success = false;
|
||||
}
|
||||
|
||||
|
@ -240,7 +240,7 @@ namespace MWDialogue
|
|||
}
|
||||
catch (const std::exception& error)
|
||||
{
|
||||
printError (std::string ("An exception has been thrown: ") + error.what());
|
||||
std::cerr << std::string ("Dialogue error: An exception has been thrown: ") + error.what();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue