Update file_system.cpp

This commit is contained in:
Stephen Miller 2025-04-30 18:41:14 -05:00
parent e356494fe8
commit 2c389245de

View File

@ -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;
}