mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Don't fade music out when returning to the menu if it's Presenting VVVVVV
Otherwise, the Presenting VVVVVV for the menu wouldn't play at all.
This commit is contained in:
parent
d865c37951
commit
48313169b6
1 changed files with 3 additions and 1 deletions
|
@ -2310,7 +2310,9 @@ void mapmenuactionpress()
|
||||||
//This fixes an apparent frame flicker.
|
//This fixes an apparent frame flicker.
|
||||||
FillRect(graphics.tempBuffer, 0x000000);
|
FillRect(graphics.tempBuffer, 0x000000);
|
||||||
graphics.fademode = 2;
|
graphics.fademode = 2;
|
||||||
music.fadeout();
|
if (music.currentsong != 6) {
|
||||||
|
music.fadeout();
|
||||||
|
}
|
||||||
map.nexttowercolour();
|
map.nexttowercolour();
|
||||||
if (!game.glitchrunnermode)
|
if (!game.glitchrunnermode)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue