1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-30 18:09:09 +00:00

(svn r18979) -Fix: Typo in console save command output.

This commit is contained in:
matthijs
2010-02-01 12:29:49 +00:00
parent d155794605
commit 108b86282f

View File

@@ -213,7 +213,7 @@ DEF_CONSOLE_CMD(ConSave)
if (SaveOrLoad(filename, SL_SAVE, SAVE_DIR) != SL_OK) {
IConsolePrint(CC_ERROR, "Saving map failed");
} else {
IConsolePrintF(CC_DEFAULT, "Map sucessfully saved to %s", filename);
IConsolePrintF(CC_DEFAULT, "Map successfully saved to %s", filename);
}
free(filename);
return true;