mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 09:28:15 +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;
|
||||
case 4:
|
||||
//change game speed
|
||||
if (!game.insecretlab && !game.intimetrial && !game.nodeathmode)
|
||||
if (!game.ingame_titlemode || (!game.insecretlab && !game.intimetrial && !game.nodeathmode))
|
||||
{
|
||||
game.createmenu(Menu::setslowdown);
|
||||
map.nexttowercolour();
|
||||
|
||||
Reference in New Issue
Block a user