mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Fix bug: Unable to skip credits in certain cases
If you had the map button held before the game transitioned to the credits and ending picture sequences, then you wouldn't be able to skip them, because those gamemodes don't have logic to detect when you've released the map button. To fix this, just implement the map button release logic. We do need a better input system soon...
This commit is contained in:
@@ -3327,6 +3327,11 @@ void gamecompleteinput(void)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!game.press_map)
|
||||
{
|
||||
game.mapheld = false;
|
||||
}
|
||||
}
|
||||
|
||||
void gamecompleteinput2(void)
|
||||
@@ -3368,4 +3373,9 @@ void gamecompleteinput2(void)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!game.press_map)
|
||||
{
|
||||
game.mapheld = false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user