From a4941e759c95f218c10c5e13854901a6fede46ed Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 9 Feb 2014 20:37:36 +0000 Subject: (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(-) (limited to 'src/openttd.cpp') diff --git a/src/openttd.cpp b/src/openttd.cpp index 6092805eb..6c700a016 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); } -- cgit v1.2.3-54-g00ecf