diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2020-03-28 22:15:12 -0400 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2020-03-28 22:15:12 -0400 |
commit | a027218bc68f3951e438da078419aaa09048c885 (patch) | |
tree | aef990bed126fa18efd322dcab43ab187272c08a /include | |
parent | 935fd18898df4ac8c84162401d65146da2cb3f4e (diff) |
Credits overworld pan sequence doc
Diffstat (limited to 'include')
-rw-r--r-- | include/credits.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/credits.h b/include/credits.h index 763abd77f..8207b703c 100644 --- a/include/credits.h +++ b/include/credits.h @@ -3,4 +3,20 @@ extern bool8 gHasHallOfFameRecords; +#define CREDITSOVWLDCMD_FB 0xFB +#define CREDITSOVWLDCMD_FC 0xFC +#define CREDITSOVWLDCMD_END 0xFD +#define CREDITSOVWLDCMD_LOADMAP 0xFE +#define CREDITSOVWLDCMD_FF 0xFF + +#define CREDITSOVWLDLOADMAP(_map, _x, _y, _delay) \ + { CREDITSOVWLDCMD_LOADMAP, MAP_GROUP(_map), MAP_NUM(_map) }, \ + { _x, _y, _delay } + +#define CREDITSOVWLDSCROLL(_xspeed, _yspeed, _length) \ + { _xspeed, _yspeed, _length } + +#define CREDITSOVWLDEND \ + { CREDITSOVWLDCMD_END, CREDITSOVWLDCMD_END, CREDITSOVWLDCMD_END } + #endif //GUARD_CREDITS_H |