1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-23 01:59:43 +01:00

Fix toggling MMMMMM always playing Presenting VVVVVV

This would be fine, under the assumption that you could never reach the
menu from outside the menu. Well, now you can, so now this has to play
the correct song instead of track 6.
This commit is contained in:
Misa 2020-06-22 17:44:03 -07:00 committed by Ethan Lee
parent caa4f0f5c9
commit 8c4b48fbfd

View file

@ -597,7 +597,7 @@ void menuactionpress()
}
music.usingmmmmmm = !music.usingmmmmmm;
music.playef(11);
music.play(6);
music.play(music.currentsong);
game.savestats();
}
else if (game.currentmenuoption == OFFSET+5+mmmmmm_offset)