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
commit ebf9a42956
1 changed files with 2 additions and 1 deletions

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;
}