mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03: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:
@@ -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();
|
||||||
|
|||||||
Reference in New Issue
Block a user