diff options
-rw-r--r-- | Add-a-new-music-song.md | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/Add-a-new-music-song.md b/Add-a-new-music-song.md index 820700c..06b7308 100644 --- a/Add-a-new-music-song.md +++ b/Add-a-new-music-song.md @@ -31,24 +31,24 @@ Writing your own music is beyond the scope of this tutorial. If you're intereste For now, download the [source code](https://pastebin.com/raw/aSDuVfDW) for Mmmmmm's Route 47 theme and save it as **audio/music/route47.asm**: -``` -Music_Route47: - musicheader 4, 1, Music_Route47_Ch1 - musicheader 1, 2, Music_Route47_Ch2 - musicheader 1, 3, Music_Route47_Ch3 - musicheader 1, 4, Music_Route47_Ch4 - -Music_Route47_Ch1: - ... - -Music_Route47_Ch2: - ... - -Music_Route47_Ch3: - ... - -Music_Route47_Ch4: - ... +```diff ++Music_Route47: ++ musicheader 4, 1, Music_Route47_Ch1 ++ musicheader 1, 2, Music_Route47_Ch2 ++ musicheader 1, 3, Music_Route47_Ch3 ++ musicheader 1, 4, Music_Route47_Ch4 ++ ++Music_Route47_Ch1: ++ ... ++ ++Music_Route47_Ch2: ++ ... ++ ++Music_Route47_Ch3: ++ ... ++ ++Music_Route47_Ch4: ++ ... ``` Notice the label `Music_Route47` before the headers. That's used in the table of music pointers to identify the whole song. |