Skip to content

Commit 49cd2dd

Browse files
committed
Update rcore.c
1 parent c4baa5b commit 49cd2dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rcore.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@
277277
#define FILE_FILTER_TAG_DIR_ONLY "DIR*" // Filter to include directories on directory scan
278278
#endif // NOTE: Used in ScanDirectoryFiles(), LoadDirectoryFilesEx() and GetDirectoryFileCountEx()
279279

280-
// Flags operation macros
280+
// Flags bitwise operation macros
281281
#define FLAG_SET(n, f) ((n) |= (f))
282282
#define FLAG_CLEAR(n, f) ((n) &= ~(f))
283283
#define FLAG_TOGGLE(n, f) ((n) ^= (f))

0 commit comments

Comments
 (0)