mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-03-22 02:41:07 +00:00
- fix directory check in POSIX directory loader.
This commit is contained in:
parent
be2f9c8660
commit
e28d3b7f0b
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ static int FS_FindAttr(findstate_t *const fileinfo)
|
|||
const std::string path = fileinfo->path + ent->d_name;
|
||||
bool isdir;
|
||||
|
||||
if (DirEntryExists(path.c_str(), &isdir))
|
||||
if (FS_DirEntryExists(path.c_str(), &isdir))
|
||||
{
|
||||
return isdir ? FA_DIREC : 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue