diff options
Diffstat (limited to '')
-rw-r--r-- | src/music.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/music.cpp b/src/music.cpp index 669a775..6e658f7 100644 --- a/src/music.cpp +++ b/src/music.cpp @@ -36,8 +36,8 @@ const char* SongNameList [] = { "SEWER", "SPACE", "BOWSER", - "", - "", + "BONUS", + "AMBUSH", "", "", "", @@ -60,8 +60,8 @@ const char* SongNameList [] = { "", "", "", - "", - "", + "MINIGAME", + "BONUS_AREA", "CHALLENGE", "", "", @@ -72,18 +72,18 @@ const char* SongNameList [] = { "", "", "", - "YOSHI ISLAND MAP", - "GOLDWOOD MAP", - "SEWER MAP", - "FULLMAP FRONT", - "FULLMAP REAR", - "MINIMEGA MAP", - "FF VOLCANO MAP", - "CRYSTAL CAVE MAP", - "SPACE MAP", - "SKY CITY MAP", - "KOOPA PLANET MAP", - "KOOPA CORE MAP", + "MAP_YOSHIISLAND", + "MAP_GOLDWOOD", + "MAP_SEWER", + "FULLMAP_FRONT", + "FULLMAP_REAR", + "MAP_MINIMEGA", + "MAP_FF_VOLCANO", + "MAP_CRYSTAL_CAVE", + "MAP_SPACE", + "MAP_SKYCITY", + "MAP_KOOPA_PLANET", + "MAP_KOOPA_CORE", NULL }; @@ -147,7 +147,7 @@ extern "C" u8 after_course_getMusicForZone(u8 realThemeID) { HijackedStream *stream = &hj->stream[hj->currentStream]; OSReport("%d", realThemeID); - OSReport("%s", SongNameList[realThemeID-99]); + OSReport("%s", SongNameList[realThemeID-100]); sprintf(BrsarInfoOffset(stream->stringOffset), "new/%s.er", SongNameList[realThemeID-100]); sprintf(BrsarInfoOffset(stream->stringOffsetFast), "new/%s_F.er", SongNameList[realThemeID-100]); |