Commit 6a04ec83 authored by bitplane's avatar bitplane

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
parent 044cb4de
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment