1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 03:53:07 +01:00

Automatically reset speed to normal upon scenario completion. (#10998)

This commit is contained in:
Aaron van Geffen
2020-03-22 23:22:28 +01:00
committed by GitHub
parent 2a94632b32
commit a2f8e8c72b
4 changed files with 9 additions and 0 deletions

View File

@@ -85,6 +85,12 @@ rct_string_id gGameCommandErrorText;
using namespace OpenRCT2;
void game_reset_speed()
{
gGameSpeed = 1;
window_invalidate_by_class(WC_TOP_TOOLBAR);
}
void game_increase_game_speed()
{
gGameSpeed = std::min(gConfigGeneral.debugging_tools ? 5 : 4, gGameSpeed + 1);