Correct capitalization of song names

This corrects things like "Passion for exploring" and "Passion For
Exploring" to be "Passion for Exploring".
This commit is contained in:
Info Teddy
2020-01-15 22:05:37 -08:00
parent 6f8d2dc90b
commit 3247d3be41
5 changed files with 25 additions and 25 deletions

View File

@@ -3120,10 +3120,10 @@ void editorrender( KeyPoll& key, Graphics& dwgfx, Game& game, mapclass& map, ent
dwgfx.Print( -1, 120, "2: Positive Force", tr, tg, tb, true);
break;
case 3:
dwgfx.Print( -1, 120, "3: Potential For Anything", tr, tg, tb, true);
dwgfx.Print( -1, 120, "3: Potential for Anything", tr, tg, tb, true);
break;
case 4:
dwgfx.Print( -1, 120, "4: Passion For Exploring", tr, tg, tb, true);
dwgfx.Print( -1, 120, "4: Passion for Exploring", tr, tg, tb, true);
break;
case 6:
dwgfx.Print( -1, 120, "5: Presenting VVVVVV", tr, tg, tb, true);
@@ -3144,7 +3144,7 @@ void editorrender( KeyPoll& key, Graphics& dwgfx, Game& game, mapclass& map, ent
dwgfx.Print( -1, 120, "10: Paced Energy", tr, tg, tb, true);
break;
case 14:
dwgfx.Print( -1, 120, "11: Piercing The Sky", tr, tg, tb, true);
dwgfx.Print( -1, 120, "11: Piercing the Sky", tr, tg, tb, true);
break;
default:
dwgfx.Print( -1, 120, "?: something else", tr, tg, tb, true);