diff options
author | matthijs <matthijs@openttd.org> | 2010-02-01 12:29:49 +0000 |
---|---|---|
committer | matthijs <matthijs@openttd.org> | 2010-02-01 12:29:49 +0000 |
commit | 108b86282f25654bf874b3a9c4b2df5f54b4cd46 (patch) | |
tree | 1d6cb7301fd289e7f1f9fe8d1346ea4e2f5ffea9 | |
parent | d155794605fbec6678969b4df814a3641295e8d0 (diff) | |
download | openttd-108b86282f25654bf874b3a9c4b2df5f54b4cd46.tar.xz |
(svn r18979) -Fix: Typo in console save command output.
-rw-r--r-- | src/console_cmds.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp index 2b27fcd57..c0a37d6dc 100644 --- a/src/console_cmds.cpp +++ b/src/console_cmds.cpp @@ -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; |