mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-08 18:09:45 +01:00
Fix pressing Esc in teleporter menu going to quit screen
When I added the new pause menu, I forgot to make pressing Esc in the teleporter menu go to the new pause menu instead. But it's fixed now.
This commit is contained in:
parent
5f131b426b
commit
13e260bf50
1 changed files with 2 additions and 2 deletions
|
@ -2336,9 +2336,9 @@ void teleporterinput()
|
|||
{
|
||||
if (!map.custommode || map.custommodeforreal)
|
||||
{
|
||||
// Go to "Do you want to quit?" screen
|
||||
// Go to pause menu
|
||||
game.mapheld = true;
|
||||
game.menupage = 10;
|
||||
game.menupage = 30;
|
||||
game.gamestate = MAPMODE;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue