changeset 18394:0fbc785914e4 draft

(svn r23230) -Codechange: stupid casing for UnPause. It's a single word, not two words "CamelCased" after eachother
author rubidium <rubidium@openttd.org>
date Tue, 15 Nov 2011 19:40:42 +0000
parents caedb3c84ddc
children 634f670a89ab
files src/console_cmds.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/console_cmds.cpp
+++ b/src/console_cmds.cpp
@@ -620,7 +620,7 @@
 	return true;
 }
 
-DEF_CONSOLE_CMD(ConUnPauseGame)
+DEF_CONSOLE_CMD(ConUnpauseGame)
 {
 	if (argc == 0) {
 		IConsoleHelp("Unpause a network game. Usage: 'unpause'");
@@ -1936,7 +1936,7 @@
 	IConsoleCmdRegister("banlist",         ConBanList, ConHookServerOnly);
 
 	IConsoleCmdRegister("pause",           ConPauseGame, ConHookServerOnly);
-	IConsoleCmdRegister("unpause",         ConUnPauseGame, ConHookServerOnly);
+	IConsoleCmdRegister("unpause",         ConUnpauseGame, ConHookServerOnly);
 
 	IConsoleCmdRegister("company_pw",      ConCompanyPassword, ConHookNeedNetwork);
 	IConsoleAliasRegister("company_password",      "company_pw %+");