mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Don't adhere to slowdown in MAPMODE/TELEPORTERMODE
Now that you have a mini menu in MAPMODE, it's a bit annoying to have to deal with the slowed-down timestep when pressing left/right/ACTION inside it. Especially since going to an options menu restores the timestep back to normal (because it's in TITLEMODE). Also removed it from TELEPORTERMODE for consistency.
This commit is contained in:
@@ -405,7 +405,7 @@ void inline deltaloop()
|
|||||||
{
|
{
|
||||||
timesteplimit = 24;
|
timesteplimit = 24;
|
||||||
}
|
}
|
||||||
else if (game.gamestate == GAMEMODE || game.gamestate == MAPMODE || game.gamestate == TELEPORTERMODE)
|
else if (game.gamestate == GAMEMODE)
|
||||||
{
|
{
|
||||||
timesteplimit = game.gameframerate;
|
timesteplimit = game.gameframerate;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user