From 56c9a1554aa08d0ea0e8610e96c2bee1ba952a75 Mon Sep 17 00:00:00 2001 From: Misa Date: Tue, 30 Jun 2020 18:41:20 -0700 Subject: [PATCH] Add names for previously disallowed songs That way, they don't show up as "?: something else" and their proper names are shown. I didn't update the song numbers to include the newly-allowed songs because otherwise it'd no longer correlate with what song numbers you use for the music() simplified command. --- desktop_version/src/editor.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/desktop_version/src/editor.cpp b/desktop_version/src/editor.cpp index e6ef66ae..67fc05b9 100644 --- a/desktop_version/src/editor.cpp +++ b/desktop_version/src/editor.cpp @@ -2404,12 +2404,21 @@ void editormenurender(int tr, int tg, int tb) case 4: songname = "4: Passion for Exploring"; break; + case 5: + songname = "N/A: Pause"; + break; case 6: songname = "5: Presenting VVVVVV"; break; + case 7: + songname = "N/A: Plenary"; + break; case 8: songname = "6: Predestined Fate"; break; + case 9: + songname = "N/A: ecroF evitisoP"; + break; case 10: songname = "7: Popular Potpourri"; break; @@ -2425,6 +2434,9 @@ void editormenurender(int tr, int tg, int tb) case 14: songname = "11: Piercing the Sky"; break; + case 15: + songname = "N/A: Predestined Fate Remix"; + break; default: songname = "?: something else"; break;