diff options
author | cbt6 <91667135+cbt6@users.noreply.github.com> | 2021-11-18 03:07:09 +0800 |
---|---|---|
committer | cbt6 <91667135+cbt6@users.noreply.github.com> | 2021-11-18 03:07:09 +0800 |
commit | 9d18ad0b5a01f17163dd6cb4228a1f7bb72e43a1 (patch) | |
tree | b63e1685207a4c13e4be7fc3a773b9e9ab550d26 | |
parent | f23d9ff30e0109e4ca4a5a4d63fa94f5e6c75bc4 (diff) |
Make arguments for create_movement_action required
-rw-r--r-- | asm/macros/movement.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asm/macros/movement.inc b/asm/macros/movement.inc index 2e52ba11d..62618379b 100644 --- a/asm/macros/movement.inc +++ b/asm/macros/movement.inc @@ -1,4 +1,4 @@ - .macro create_movement_action name, value + .macro create_movement_action name:req, value:req .macro \name .byte \value .endm |