Commit 865593fa authored by hybrid's avatar hybrid

Looks like a parameter ordering bug.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2594 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 16f8b240
...@@ -667,7 +667,7 @@ IFileList* CFileSystem::createFileList() ...@@ -667,7 +667,7 @@ IFileList* CFileSystem::createFileList()
{ {
core::string<c16> fullPath = r->getPath() + "/"; core::string<c16> fullPath = r->getPath() + "/";
fullPath += merge->getFullFileName(j); fullPath += merge->getFullFileName(j);
r->addItem(fullPath, merge->isDirectory(j), merge->getFileSize(j), 0); r->addItem(fullPath, merge->getFileSize(j), merge->isDirectory(j), 0);
} }
} }
} }
......
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