1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Fixed #2407 - Prevent prompt from showing shortly after loading a second park.

This commit is contained in:
Hielke Morsink
2015-12-01 12:18:14 +01:00
committed by IntelOrca
parent 93e0bc5a24
commit 65a0dcbc8a

View File

@@ -787,6 +787,9 @@ int game_load_sv6(SDL_RWops* rw)
game_convert_strings_to_utf8();
game_fix_save_vars(); // OpenRCT2 fix broken save games
// #2407: Resetting screen time to not open a save prompt shortly after loading a park.
RCT2_GLOBAL(RCT2_ADDRESS_SCREEN_AGE, uint16) = 0;
return 1;
}