1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 06:44:38 +01:00

Merge pull request #1831 from LRFLEW/save-prompt-fix

Fixed autosaves preventing saving before quitting dialog from appearing
This commit is contained in:
Ted John
2015-08-21 07:30:07 +01:00

View File

@@ -975,7 +975,8 @@ int scenario_save(SDL_RWops* rw, int flags)
reset_loaded_objects();
gfx_invalidate_screen();
RCT2_GLOBAL(RCT2_ADDRESS_SCREEN_AGE, uint16) = 0;
if (!(flags & 0x80000000))
RCT2_GLOBAL(RCT2_ADDRESS_SCREEN_AGE, uint16) = 0;
return 1;
}