aboutsummaryrefslogtreecommitdiffstats
path: root/engine/events
diff options
context:
space:
mode:
authorRangi <35663410+Rangi42@users.noreply.github.com>2025-01-28 23:31:27 -0500
committerGitHub <noreply@github.com>2025-01-28 23:31:27 -0500
commitec37f6117da6c550e70f466118731e8f752e3afb (patch)
tree3dc48ad754a31ed08770943ff9053146f05b9cf9 /engine/events
parentMiscellaneous cleanup (#488) (diff)
downloadpokeyellow-ec37f6117da6c550e70f466118731e8f752e3afb.tar.gz
pokeyellow-ec37f6117da6c550e70f466118731e8f752e3afb.tar.xz
pokeyellow-ec37f6117da6c550e70f466118731e8f752e3afb.zip
Consistently capitalize `ASSERT` directives (#489)
Diffstat (limited to 'engine/events')
-rw-r--r--engine/events/poison.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/events/poison.asm b/engine/events/poison.asm
index c0b4a18f..beb1a312 100644
--- a/engine/events/poison.asm
+++ b/engine/events/poison.asm
@@ -1,6 +1,6 @@
ApplyOutOfBattlePoisonDamage:
ld a, [wStatusFlags5]
- assert BIT_SCRIPTED_MOVEMENT_STATE == 7
+ ASSERT BIT_SCRIPTED_MOVEMENT_STATE == 7
add a ; overflows scripted movement state bit into carry flag
jp c, .noBlackOut ; no black out if joypad states are being simulated
ld a, [wPartyCount]