From 01f1aa02e82f1b64842abd32fa86437a6dd4a8ac Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Fri, 4 Jul 2003 00:23:04 +0000 Subject: [PATCH] Don't call FileSet::IsADirectory because this is where it is supposed to be set and it will always return false. --- stepmania/src/RageUtil_FileDB.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageUtil_FileDB.cpp b/stepmania/src/RageUtil_FileDB.cpp index a9f3e87550..a26369de2b 100644 --- a/stepmania/src/RageUtil_FileDB.cpp +++ b/stepmania/src/RageUtil_FileDB.cpp @@ -93,7 +93,7 @@ void FileSet::LoadFromDir(const CString &dir) File f; f.name=ent->d_name; - f.dir = IsADirectory(ent->d_name); + f.dir = ::IsADirectory(ent->d_name); files.insert(f); }