summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRangi <35663410+Rangi42@users.noreply.github.com>2018-07-17 17:15:07 -0400
committerRangi <35663410+Rangi42@users.noreply.github.com>2018-07-17 17:15:07 -0400
commit0331777b95d058b618c75bdc6078bccde9241981 (patch)
treeba5db513818baabecefa084e656b34a6669bb848
parent245cb70d0e4f90b3f0316b3f8c28ad9c5e022c79 (diff)
Updated Code cleanup (markdown)
-rw-r--r--Code-cleanup.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Code-cleanup.md b/Code-cleanup.md
index d192254..9feb984 100644
--- a/Code-cleanup.md
+++ b/Code-cleanup.md
@@ -23,7 +23,7 @@ Most of the time, raw numbers should not exist because there are more meaningful
- Bit flags: Use `SOME_BIT_F` constants instead of hard-coding bits 0-7 for the `bit`/`res`/`set` instructions. Find opportunities with:
- grep -rE --include='*.asm' --exclude-dir=mobile '^\s(bit|res|set) [0-7],'
+ grep -rE --include='*.asm' --exclude-dir=mobile '^\s(bit|res|set) [0-7],'
- Bit masks: Use `1 << SOME_BIT_F` masks and the `maskbits` macro.