changeset 15505:dd28864682e7 draft

(svn r20157) -Fix [FS#3950]: make it *very* clear that saveconfig doesn't save the configuration of a running savegame to openttd.cfg, but the one that would be used for new games
author rubidium <rubidium@openttd.org>
date Thu, 15 Jul 2010 20:43:47 +0000
parents fd3787b52d77
children f27a83a403f3
files src/console_cmds.cpp
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/console_cmds.cpp
+++ b/src/console_cmds.cpp
@@ -241,7 +241,8 @@
 DEF_CONSOLE_CMD(ConSaveConfig)
 {
 	if (argc == 0) {
-		IConsoleHelp("Saves the current config, typically to 'openttd.cfg'.");
+		IConsoleHelp("Saves the configuration for new games to the configuration file, typically 'openttd.cfg'.");
+		IConsoleHelp("It does not save the configuration of the current game to the configuration file.");
 		return true;
 	}