mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-29 06:57:42 +01:00
And this is exactly why bitshift is a good idea
This commit is contained in:
@@ -336,9 +336,9 @@ This prevents nesting levels from getting deeper then they need to be.
|
||||
```
|
||||
Is preferable to
|
||||
```
|
||||
#define MACRO_ONE 0
|
||||
#define MACRO_TWO 1
|
||||
#define MACRO_THREE 2
|
||||
#define MACRO_ONE 1
|
||||
#define MACRO_TWO 2
|
||||
#define MACRO_THREE 4
|
||||
```
|
||||
This make the code more readable and less prone to error
|
||||
|
||||
|
||||
Reference in New Issue
Block a user