aboutsummaryrefslogtreecommitdiffstats
path: root/data
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 /data
parentMiscellaneous cleanup (#488) (diff)
downloadpokeyellow-ec37f6117da6c550e70f466118731e8f752e3afb.tar.gz
pokeyellow-ec37f6117da6c550e70f466118731e8f752e3afb.tar.xz
pokeyellow-ec37f6117da6c550e70f466118731e8f752e3afb.zip
Consistently capitalize `ASSERT` directives (#489)
Diffstat (limited to 'data')
-rw-r--r--data/moves/moves.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/moves/moves.asm b/data/moves/moves.asm
index f435ab6b..ac638721 100644
--- a/data/moves/moves.asm
+++ b/data/moves/moves.asm
@@ -5,7 +5,7 @@ MACRO move
db \4 ; type
db \5 percent ; accuracy
db \6 ; pp
- assert \6 <= 40, "PP must be 40 or less"
+ ASSERT \6 <= 40, "PP must be 40 or less"
ENDM
Moves: