mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Consistently play Viridian squeak for pause menu inputs
Pressing Esc to cancel the confirm quit menu didn't play the squeak, in contrast to pressing ACTION to cancel it, so now it does; pressing Esc to close the pause menu or pressing ACTION will also now play the Viridian squeak too.
This commit is contained in:
parent
c84d7ebf08
commit
c37eb37b4d
1 changed files with 2 additions and 0 deletions
|
@ -2235,6 +2235,7 @@ void mapinput(void)
|
|||
{
|
||||
graphics.resumegamemode = true;
|
||||
}
|
||||
music.playef(11);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -2403,6 +2404,7 @@ static void mapmenuactionpress(void)
|
|||
case 30:
|
||||
// Return to game
|
||||
graphics.resumegamemode = true;
|
||||
music.playef(11);
|
||||
break;
|
||||
case 31:
|
||||
// Graphic options and game options
|
||||
|
|
Loading…
Reference in a new issue