2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 21:07:42 +00:00

Windows string fixes

This commit is contained in:
Jack Andersen
2016-02-16 17:36:06 -10:00
parent 474224a1d2
commit 52d840a49b
2 changed files with 3 additions and 3 deletions

View File

@@ -241,8 +241,8 @@ static void _recursiveGlob(Database::Project& proj,
nextItStr += '/';
nextItStr += ent.m_name;
struct stat theStat;
if (stat(nextItStr.c_str(), &theStat))
HECL::Sstat theStat;
if (Stat(nextItStr.c_str(), &theStat))
continue;
if (ent.m_isDir)