From 49cd2ddaa15efd1617efd142c74386a99a2f4d30 Mon Sep 17 00:00:00 2001 From: Ray Date: Mon, 9 Feb 2026 22:24:07 +0100 Subject: [PATCH] Update rcore.c --- src/rcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rcore.c b/src/rcore.c index 2d7b90b9a..6974314cc 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -277,7 +277,7 @@ #define FILE_FILTER_TAG_DIR_ONLY "DIR*" // Filter to include directories on directory scan #endif // NOTE: Used in ScanDirectoryFiles(), LoadDirectoryFilesEx() and GetDirectoryFileCountEx() -// Flags operation macros +// Flags bitwise operation macros #define FLAG_SET(n, f) ((n) |= (f)) #define FLAG_CLEAR(n, f) ((n) &= ~(f)) #define FLAG_TOGGLE(n, f) ((n) ^= (f))