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

Only check Secret Lab/Time Trial/NDM for slowdown if ingame_titlemode

This is already done for invincibility. It's kind of unnecessary, but
it's just to make sure if for some reason in the future variables like
insecretlab/intimetrial/nodeathmode don't get reset when exiting to the
menu.
This commit is contained in:
Misa 2020-06-22 22:56:40 -07:00 committed by Ethan Lee
parent a3f171b018
commit 94a67ca0aa

View file

@ -514,7 +514,7 @@ void menuactionpress()
break; break;
case 4: case 4:
//change game speed //change game speed
if (!game.insecretlab && !game.intimetrial && !game.nodeathmode) if (!game.ingame_titlemode || (!game.insecretlab && !game.intimetrial && !game.nodeathmode))
{ {
game.createmenu(Menu::setslowdown); game.createmenu(Menu::setslowdown);
map.nexttowercolour(); map.nexttowercolour();