mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 19:19:56 +00:00
Warn if removing a node fails
This commit is contained in:
parent
209e139aa8
commit
4c5992a0d5
1 changed files with 4 additions and 1 deletions
|
@ -182,7 +182,10 @@ namespace
|
|||
void remove()
|
||||
{
|
||||
for (RemoveVec::iterator it = mToRemove.begin(); it != mToRemove.end(); ++it)
|
||||
it->second->removeChild(it->first);
|
||||
{
|
||||
if (!it->second->removeChild(it->first))
|
||||
std::cerr << "error removing " << it->first->getName() << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Reference in a new issue