Tiny fix in manual

Without parentheses, bitwise-and takes precedence over bitwise-or.
This commit is contained in:
stgatilov 2021-05-22 14:20:36 +07:00 committed by GitHub
parent 68948712b4
commit e01ba2d7d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1121,7 +1121,7 @@ enum SubSystems
... ...
// Preferably a define in the build system // Preferably a define in the build system
#define SUBSYSTEMS Sys_Physics | Sys_NasalDemons #define SUBSYSTEMS (Sys_Physics | Sys_NasalDemons)
... ...