missed a semicolon in a do while loop .. oops

git-svn-id: http://svn.code.sf.net/p/irrlicht/code/trunk@781 dfc29bdd-3216-0410-991c-e03cc46cb475
This commit is contained in:
bitplane 2007-07-12 16:47:25 +00:00
parent 9483405ae8
commit 0edbf96bf6

View File

@ -680,7 +680,7 @@ public:
if (child->Parent)
child = child->Parent;
} while (child->Parent && child != this)
} while (child->Parent && child != this);
_IRR_IMPLEMENT_MANAGED_MARSHALLING_BUGFIX;
return child == this;