From 2c389245defaff7cb4a3d32dba7cf1872a9aaef3 Mon Sep 17 00:00:00 2001 From: Stephen Miller Date: Wed, 30 Apr 2025 18:41:14 -0500 Subject: [PATCH] Update file_system.cpp --- src/core/libraries/kernel/file_system.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/libraries/kernel/file_system.cpp b/src/core/libraries/kernel/file_system.cpp index 5a737400f..be7a95cdd 100644 --- a/src/core/libraries/kernel/file_system.cpp +++ b/src/core/libraries/kernel/file_system.cpp @@ -169,8 +169,8 @@ s32 PS4_SYSV_ABI open(const char* raw_path, s32 flags, u16 mode) { } if (e == EACCES) { - // Windows-specific hack, ignore the error and continue as normal. - LOG_WARNING(Kernel_Fs, "Trying to open a directory on Windows"); + // Hack to bypass some platform limitations, ignore the error and continue as normal. + LOG_WARNING(Kernel_Fs, "Opening directories is not fully supported on this platform"); e = 0; }