From 455a6e4554f7b65e0c68bc9fe44ee558e5524ea3 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 3 Jan 2009 16:35:25 +0000 Subject: (svn r14809) -Fix (r14802): forgotten ! --- src/saveload.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/saveload.cpp b/src/saveload.cpp index ebbba0edf..eb46fe094 100644 --- a/src/saveload.cpp +++ b/src/saveload.cpp @@ -1855,7 +1855,7 @@ void GenerateDefaultSaveName(char *buf, const char *last) SetDParam(2, _date); /* Get the correct string (special string for when there's not company) */ - GetString(buf, IsValidCompanyID(cid) ? STR_GAME_SAVELOAD_SPECTATOR_SAVEGAME : STR_4004, last); + GetString(buf, !IsValidCompanyID(cid) ? STR_GAME_SAVELOAD_SPECTATOR_SAVEGAME : STR_4004, last); SanitizeFilename(buf); } -- cgit v1.2.3-54-g00ecf