Update src/core/hle/libraries/libkernel/file_system.h

Co-authored-by: GPUCode <47210458+GPUCode@users.noreply.github.com>
This commit is contained in:
georgemoralis 2023-11-08 07:58:15 +02:00 committed by GitHub
parent c2f18dc7b0
commit 3bc52fcce3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ struct SceKernelDirent {
char d_name[SCE_MAX_PATH + 1]; /* name must be no longer than this */
};
// open flags
// Open flags
constexpr u32 SCE_KERNEL_O_RDONLY = 0x0000; // Open as read-only
constexpr u32 SCE_KERNEL_O_WRONLY = 0x0001; // Open as write-only
constexpr u32 SCE_KERNEL_O_RDWR = 0x0002; // Open for reading and writing