diff options
Diffstat (limited to 'macros/event.asm')
-rw-r--r-- | macros/event.asm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/macros/event.asm b/macros/event.asm index fe41050c9..893d55fe6 100644 --- a/macros/event.asm +++ b/macros/event.asm @@ -287,6 +287,10 @@ checktime: macro db \1 ; time endm +checkmorn EQUS "checktime 1" +checkday EQUS "checktime 2" +checknite EQUS "checktime 4" + enum checkpoke_command checkpoke: macro db checkpoke_command @@ -765,7 +769,8 @@ earthquake: macro enum changemap_command changemap: macro db changemap_command - dw \1 ; map_data_pointer + db \1 ; map_bank + dw \2 ; map_data_pointer endm enum changeblock_command |