Merge branch 'master' of github.com:nem0/LumixEngine

This commit is contained in:
Mikulas Florek 2015-10-27 20:42:36 +01:00
commit d07607f5dd

View file

@ -71,7 +71,7 @@ public:
return;
}
while (*lhs && *rhs && !isWhitespace(*rhs) && lhs != end)
while (*rhs && !isWhitespace(*rhs) && lhs != end)
{
*lhs = *rhs;
++lhs;