We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4baa5b commit 49cd2ddCopy full SHA for 49cd2dd
src/rcore.c
@@ -277,7 +277,7 @@
277
#define FILE_FILTER_TAG_DIR_ONLY "DIR*" // Filter to include directories on directory scan
278
#endif // NOTE: Used in ScanDirectoryFiles(), LoadDirectoryFilesEx() and GetDirectoryFileCountEx()
279
280
-// Flags operation macros
+// Flags bitwise operation macros
281
#define FLAG_SET(n, f) ((n) |= (f))
282
#define FLAG_CLEAR(n, f) ((n) &= ~(f))
283
#define FLAG_TOGGLE(n, f) ((n) ^= (f))
0 commit comments