summaryrefslogtreecommitdiff
path: root/Short-beeping-noise-for-low-HP.md
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2021-11-25 11:11:16 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2021-11-25 11:11:16 -0500
commita498c40c960e6d208b2a11b40aef2b38db9be57b (patch)
tree23b9918092529d61f9c4e96f2b91dfc7b6cdadf5 /Short-beeping-noise-for-low-HP.md
parent66d66c1b68307a00085ca7e7a6bb0b1ad153e514 (diff)
Use ~X instead of $ff ^ X
Diffstat (limited to 'Short-beeping-noise-for-low-HP.md')
-rw-r--r--Short-beeping-noise-for-low-HP.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Short-beeping-noise-for-low-HP.md b/Short-beeping-noise-for-low-HP.md
index 962869d..f793b4d 100644
--- a/Short-beeping-noise-for-low-HP.md
+++ b/Short-beeping-noise-for-low-HP.md
@@ -25,7 +25,7 @@ Edit [audio/engine.asm](../blob/master/audio/engine.asm):
+ ret z
; Don't do anything if SFX is being played
-- and $ff ^ (1 << DANGER_ON_F)
+- and ~(1 << DANGER_ON_F)
ld d, a
call _CheckSFX
jr c, .increment