mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 10:09: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:
parent
caa4f0f5c9
commit
8c4b48fbfd
1 changed files with 1 additions and 1 deletions
|
@ -597,7 +597,7 @@ void menuactionpress()
|
||||||
}
|
}
|
||||||
music.usingmmmmmm = !music.usingmmmmmm;
|
music.usingmmmmmm = !music.usingmmmmmm;
|
||||||
music.playef(11);
|
music.playef(11);
|
||||||
music.play(6);
|
music.play(music.currentsong);
|
||||||
game.savestats();
|
game.savestats();
|
||||||
}
|
}
|
||||||
else if (game.currentmenuoption == OFFSET+5+mmmmmm_offset)
|
else if (game.currentmenuoption == OFFSET+5+mmmmmm_offset)
|
||||||
|
|
Loading…
Reference in a new issue