missed a semicolon in a do while loop .. oops

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@781 dfc29bdd-3216-0410-991c-e03cc46cb475
master
bitplane 2007-07-12 16:47:25 +00:00
parent 044cb4de8b
commit 6a04ec83c7
1 changed files with 1 additions and 1 deletions

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;