This commit is contained in:
halx99 2020-08-18 12:09:56 +08:00
parent 4ff14cbf3a
commit 98bdeef044
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ std::string FileUtilsWin32::getFullPathForFilenameWithinDirectory(const std::str
void FileUtilsWin32::listFilesRecursively(const std::string& dirPath, std::vector<std::string> *files) const
{
std::string fullpath = fullPathForFilename(dirPath);
std::string fullpath = fullPathForDirectory(dirPath);
if (isDirectoryExist(fullpath))
{
tinydir_dir dir;