diff --git a/3rdparty/ocornut-imgui/widgets/file_list.inl b/3rdparty/ocornut-imgui/widgets/file_list.inl index d7b89103c..41b07edbf 100644 --- a/3rdparty/ocornut-imgui/widgets/file_list.inl +++ b/3rdparty/ocornut-imgui/widgets/file_list.inl @@ -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()