Common/FileSystem: Fix macOS build

This commit is contained in:
Connor McLaughlin 2020-11-28 00:58:46 +10:00
parent 16a6c1706e
commit f21d901cf1
1 changed files with 1 additions and 1 deletions

View File

@ -1322,7 +1322,7 @@ static u32 RecursiveFindFiles(const char* OriginPath, const char* ParentPath, co
}
outData.Size = static_cast<u64>(sDir.st_size);
outData.ModificationTime.SetUnixTimestamp(static_cast<Timestamp::UnixTimestampValue>(sDir.st_mtim.tv_sec));
outData.ModificationTime.SetUnixTimestamp(static_cast<Timestamp::UnixTimestampValue>(sDir.st_mtime));
// match the filename
if (hasWildCards)