From cce01f8104adb8d32f4ead898c7b50b77f7b47d0 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 9 Feb 2014 20:37:36 +0000 Subject: [PATCH] (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) --- src/openttd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openttd.cpp b/src/openttd.cpp index 6092805eb4..6c700a016e 100644 --- a/src/openttd.cpp +++ b/src/openttd.cpp @@ -1445,8 +1445,8 @@ void GameLoop() /* autosave game? */ if (_do_autosave) { - _do_autosave = false; DoAutosave(); + _do_autosave = false; SetWindowDirty(WC_STATUS_BAR, 0); }