Mercurial > hg > openttd
diff src/openttd.cpp @ 11193:22a093022e53 draft
(svn r15546) -Fix [FS#2651]: keep_all_autosave ignored for dedicated servers/spectators.
author | rubidium <rubidium@openttd.org> |
---|---|
date | Sat, 21 Feb 2009 15:23:49 +0000 (2009-02-21) |
parents | e49bc8f3aa3b |
children | d0328639d3a8 |
line wrap: on
line diff
--- a/src/openttd.cpp +++ b/src/openttd.cpp @@ -1114,7 +1114,7 @@ if (_networking) return; #endif /* PSP */ - if (_settings_client.gui.keep_all_autosave && _local_company != COMPANY_SPECTATOR) { + if (_settings_client.gui.keep_all_autosave) { GenerateDefaultSaveName(buf, lastof(buf)); strecat(buf, ".sav", lastof(buf)); } else {