From 3640d30be291ab368665a47f643c4846e12d473f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Wed, 21 Sep 2016 18:34:16 -0700 Subject: [PATCH] Cleanup. --- 3rdparty/ocornut-imgui/widgets/file_list.inl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()