diff options
author | Marcus Huderle <huderlem@gmail.com> | 2017-12-21 16:02:42 -0600 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2017-12-21 16:02:42 -0600 |
commit | 66f9d4c266b3bbfe02430282f512f722f04eaa4c (patch) | |
tree | db1bd287ab40131902b1b798773909cc80ac4b41 | |
parent | 173761a5a11edf32eb22453e83689587e0aee683 (diff) |
Revert initclock arg sizes
-rw-r--r-- | asm/macros/event.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc index 2e407856e..6b66d45c0 100644 --- a/asm/macros/event.inc +++ b/asm/macros/event.inc @@ -295,8 +295,8 @@ @ Initializes the RTC`s local time offset to the given hour and minute. In FireRed, this command is a nop. .macro initclock hour, minute .byte 0x2c - .byte \hour - .byte \minute + .2byte \hour + .2byte \minute .endm @ Runs time based events. In FireRed, this command is a nop. |