Remove tolower music_name, because we do case-insensitive matching now

This commit is contained in:
mazmazz 2018-08-25 21:53:22 -04:00
parent 48b6255e93
commit 9f3549e5e1

View file

@ -1562,10 +1562,6 @@ void S_ChangeMusicAdvanced(const char *mmusic, UINT16 mflags, boolean looping, U
#endif
newmusic[6] = 0;
int i;
for (i = 0; newmusic[i]; i++) {
newmusic[i] = tolower(newmusic[i]);
}
// No Music (empty string)
if (newmusic[0] == 0)