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

Fix softlock if exiting Super Grav and bringing up map in glitchrunner

The game would softlock if you brought up the map screen or quit screen
after exiting the Super Gravitron to the Secret Lab. This softlock would
only happen if you were in glitchrunner mode.

This is because glitchrunner mode set game.fadetolabdelay when it
shouldn't have, and also checked game.fadetolabdelay when it shouldn't
have.

So I made it so that the game will only set game.fadetolabdelay when not
in glitchrunner mode (I already had a check for game.fadetomenudelay,
too!) and the game will only check for game.fadetomenudelay and
game.fadetolabdelay when not in glitchrunner mode, as well.

I originally made the game check game.fadetomenudelay and
game.fadetolabdelay to prevent being able to re-press ACTION to re-start
the fadeout if the game was already fading out. And I made sure that
this wasn't broken, both in glitchrunner mode and normal mode.
This commit is contained in:
Misa 2020-07-16 15:11:54 -07:00 committed by Ethan Lee
parent ecf43d05dc
commit fb8cb705da

View file

@ -2071,8 +2071,8 @@ void mapinput()
} }
if(graphics.menuoffset==0 if(graphics.menuoffset==0
&& (!game.glitchrunnermode || graphics.fademode == 0) && ((!game.glitchrunnermode && game.fadetomenudelay <= 0 && game.fadetolabdelay <= 0)
&& game.fadetomenudelay <= 0 && game.fadetolabdelay <= 0) || graphics.fademode == 0))
{ {
if (graphics.flipmode) if (graphics.flipmode)
{ {
@ -2265,8 +2265,11 @@ void mapmenuactionpress()
game.swnmode = false; game.swnmode = false;
graphics.fademode = 2; graphics.fademode = 2;
music.fadeout(); music.fadeout();
if (!game.glitchrunnermode)
{
game.fadetolab = true; game.fadetolab = true;
game.fadetolabdelay = 16; game.fadetolabdelay = 16;
}
break; break;
case 30: case 30:
// Return to game // Return to game