diff options
author | Diegoisawesome <diego@domoreaweso.me> | 2019-01-21 22:34:01 -0600 |
---|---|---|
committer | Diegoisawesome <diego@domoreaweso.me> | 2019-01-21 22:34:01 -0600 |
commit | 900f294011ea0eb06c48c28b4b4aea51e5cf32b7 (patch) | |
tree | a7328bb5f3276efffca943a078650a7d4c592109 /asm/macros | |
parent | 6c1cb7219e91b11fa4a96d33ffd337d676a9db3b (diff) |
Add var const prefix for some missed var numbers
Diffstat (limited to 'asm/macros')
-rw-r--r-- | asm/macros/event.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc index ba851d70a..091c32a2a 100644 --- a/asm/macros/event.inc +++ b/asm/macros/event.inc @@ -1626,11 +1626,11 @@ .endm .macro switch var:req - copyvar 0x8000, \var + copyvar VAR_0x8000, \var .endm .macro case condition:req, dest:req - compare 0x8000, \condition + compare VAR_0x8000, \condition goto_if_eq \dest .endm @@ -1650,13 +1650,13 @@ .endm .macro giveitem_std item:req, amount=1, function=0 - setorcopyvar 0x8000, \item - setorcopyvar 0x8001, \amount + setorcopyvar VAR_0x8000, \item + setorcopyvar VAR_0x8001, \amount callstd \function .endm .macro givedecoration_std decoration:req - setorcopyvar 0x8000, \decoration + setorcopyvar VAR_0x8000, \decoration callstd STD_OBTAIN_DECORATION .endm |