Fix a while loop in Directory::copy function (semicolon removed).

Former-commit-id: 6f27d4f85f32a3ee03321befaac3d652fd8a7e23
This commit is contained in:
=
2013-07-04 13:26:33 +02:00
parent c2e197bda5
commit 9ad4aeb20f

View File

@@ -215,7 +215,7 @@ bool NzDirectory::Copy(const NzString& sourcePath, const NzString& destPath)
return false;
}
while (dir.NextResult(true));
while (dir.NextResult(true))
{
if (dir.IsResultDirectory())
{