소스 검색

Merge pull request #562 from Azaezel/alpha40/macABfix

followup to #531. fixes the same issue on mac
Brian Roberts 4 년 전
부모
커밋
b44a8cf644
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Engine/source/platformMac/macFileIO.mm

+ 1 - 1
Engine/source/platformMac/macFileIO.mm

@@ -911,7 +911,7 @@ static bool recurseDumpDirectories(const char *basePath, const char *subPath, Ve
 //-----------------------------------------------------------------------------
 bool Platform::dumpDirectories(const char *path, Vector<StringTableEntry> &directoryVector, S32 depth, bool noBasePath)
 {
-   bool retVal = recurseDumpDirectories(path, "", directoryVector, 0, depth, noBasePath);
+   bool retVal = recurseDumpDirectories(path, "", directoryVector, -1, depth, noBasePath);
    clearExcludedDirectories();
    return retVal;
 }