This commit is contained in:
Branimir Karadžić
2016-09-21 18:34:16 -07:00
parent d2ee21c337
commit 3640d30be2

View File

@@ -16,7 +16,7 @@ namespace ImGui
void ImFileList::ChDir(const char* path)
{
#if BX_PLATFORM_NACL
#if BX_PLATFORM_NACL || BX_PLATFORM_PS4
BX_UNUSED(path);
#else
DIR* dir = opendir(path);
@@ -47,7 +47,7 @@ namespace ImGui
closedir(dir);
}
#endif // BX_PLATFORM_NACL
#endif // BX_PLATFORM_NACL || BX_PLATFORM_PS4
}
void ImFileList::Draw()