src/console_cmds.cpp
branchcpp_gui
changeset 6268 4b5241e5dd10
parent 5875 4a1391019791
child 6298 c30fe89622df
child 6557 8381016f71f3
--- a/src/console_cmds.cpp	Tue Feb 27 23:54:28 2007 +0000
+++ b/src/console_cmds.cpp	Wed Feb 28 00:33:40 2007 +0000
@@ -1,5 +1,7 @@
 /* $Id$ */
 
+/** @file console_cmds.cpp */
+
 #include "stdafx.h"
 #include "openttd.h"
 #include "console.h"
@@ -226,7 +228,7 @@
 		if (strcmp(file, _fios_list[i].title) == 0) break;
 	}
 
-	if (i == _fios_num) { /* If no name matches, try to parse it as number */
+	if (i == _fios_num) { // If no name matches, try to parse it as number
 		char* endptr;
 
 		i = strtol(file, &endptr, 10);
@@ -614,7 +616,7 @@
 
 DEF_CONSOLE_HOOK(ConHookValidateMaxSpectatorsCount)
 {
-	/* XXX @see ConHookValidateMaxClientsCount */
+	/* XXX see ConHookValidateMaxClientsCount */
 	if (_network_game_info.spectators_max > 10) {
 		_network_game_info.spectators_max = 10;
 		IConsoleError("Maximum spectators out of bounds, truncating to limit.");
@@ -1342,7 +1344,7 @@
 
 	if (ci == NULL) return false;
 
-	// Don't change the name if it is the same as the old name
+	/* Don't change the name if it is the same as the old name */
 	if (strcmp(ci->client_name, _network_player_name) != 0) {
 		if (!_network_server) {
 			SEND_COMMAND(PACKET_CLIENT_SET_NAME)(_network_player_name);
@@ -1441,8 +1443,8 @@
 
 static void IConsoleDebugLibRegister(void)
 {
-	// debugging variables and functions
-	extern bool _stdlib_con_developer; /* XXX extern in .c */
+	/* debugging variables and functions */
+	extern bool _stdlib_con_developer; // XXX extern in .cpp
 
 	IConsoleVarRegister("con_developer",    &_stdlib_con_developer, ICONSOLE_VAR_BOOLEAN, "Enable/disable console debugging information (internal)");
 	IConsoleCmdRegister("resettile",        ConResetTile);
@@ -1458,10 +1460,10 @@
 
 void IConsoleStdLibRegister(void)
 {
-	// stdlib
-	extern byte _stdlib_developer; /* XXX extern in .c */
+	/* stdlib */
+	extern byte _stdlib_developer; // XXX extern in .cpp
 
-	// default variables and functions
+	/* default variables and functions */
 	IConsoleCmdRegister("debug_level",  ConDebugLevel);
 	IConsoleCmdRegister("dump_vars",    ConListDumpVariables);
 	IConsoleCmdRegister("echo",         ConEcho);