summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2017-12-21 16:09:48 -0600
committerMarcus Huderle <huderlem@gmail.com>2017-12-21 16:09:48 -0600
commit1c1ce902515ccb3ccecde29611711c9b1a3ce955 (patch)
tree22f282463ef32757695f744f024690c3a007f285
parent85a8e5f1ded5a0a2354916617dd0b82091a42ee0 (diff)
Revert initclock arg sizes
-rw-r--r--asm/macros/event.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc
index d08f18a57..738c2418e 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.