diff options
author | GriffinR <griffin.richards@comcast.net> | 2019-11-07 11:07:49 -0500 |
---|---|---|
committer | GriffinR <griffin.richards@comcast.net> | 2019-11-07 11:07:49 -0500 |
commit | 702ef745d97dcdeae03e1c47fb1f2f7fc1be6dd0 (patch) | |
tree | 1f25354436926884102110ee8e8cb348517b14b5 | |
parent | d5685db19a98657492d5d99541f266c26a52619a (diff) |
Add comments to hidemoneybox macro
-rw-r--r-- | asm/macros/event.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc index de98d6fa3..20b5f3e60 100644 --- a/asm/macros/event.inc +++ b/asm/macros/event.inc @@ -1080,11 +1080,11 @@ .byte \check .endm - @ Hides the secondary box spawned by showmoney. + @ Hides the secondary box spawned by showmoney. Consumption of the x and y arguments was dummied out. .macro hidemoneybox .byte 0x94 - nop - nop + .byte 0 @ \x + .byte 0 @ \y .endm @ Updates the secondary box spawned by showmoney. Consumes but does not use arguments. |