1
0
Fork 0

(svn r26326) -Fix [FS#5871]: when autosaving the message about a save already happening could be shown, even though the code's intention was to not show it (MJP)

release/1.4
rubidium 2014-02-09 20:37:36 +00:00
parent 20737a3462
commit a4941e759c
1 changed files with 1 additions and 1 deletions

View File

@ -1445,8 +1445,8 @@ void GameLoop()
/* autosave game? */
if (_do_autosave) {
_do_autosave = false;
DoAutosave();
_do_autosave = false;
SetWindowDirty(WC_STATUS_BAR, 0);
}