diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-15 13:12:56 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-06-15 13:12:56 -0400 |
commit | 9f01e33a0428f8a8c206b3f6018f526a41d65b43 (patch) | |
tree | 7f3c8606ebbe0f882955761a899ec9f819412c17 /macros/predef.asm | |
parent | 0bc1e91d217fb1a724c08ed6c5826c2379f10507 (diff) |
Port miscellaneous recent updates from pokecrystal
Diffstat (limited to 'macros/predef.asm')
-rw-r--r-- | macros/predef.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macros/predef.asm b/macros/predef.asm index 7850350a..a1c43bb5 100644 --- a/macros/predef.asm +++ b/macros/predef.asm @@ -1,15 +1,15 @@ -predef_id: MACRO +lda_predef: MACRO ; Some functions load the predef id ; without immediately calling Predef. ld a, (\1Predef - PredefPointers) / 3 ENDM predef: MACRO - predef_id \1 + lda_predef \1 call Predef ENDM predef_jump: MACRO - predef_id \1 + lda_predef \1 jp Predef ENDM |