diff options
author | ExpoSeed <> | 2021-05-21 15:08:00 -0500 |
---|---|---|
committer | ExpoSeed <> | 2021-05-21 15:08:00 -0500 |
commit | 6a977bdbfccfa27433abdafede36f434184809bb (patch) | |
tree | 82a25b3e29e091816f4508889f029b971bd28cad /asm | |
parent | 58d83bf9a7cc2e4b90cfcf98a3ffb6b8c0ec833c (diff) |
Document second parameter of playbgm
Diffstat (limited to 'asm')
-rw-r--r-- | asm/macros/event.inc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc index f3f17c5d8..915fc7142 100644 --- a/asm/macros/event.inc +++ b/asm/macros/event.inc @@ -345,11 +345,12 @@ .byte 0x32 .endm - @ Plays the specified (song_number) song. The byte is apparently supposed to be 0x00. - .macro playbgm song_number:req, unknown:req + @ Plays the specified (song_number) song. If save_song is TRUE, the + @ specified (song_number) will be saved as if savebgm was called with it. + .macro playbgm song_number:req, save_song:req .byte 0x33 .2byte \song_number - .byte \unknown + .byte \save_song .endm @ Saves the specified (song_number) song to be played later. |