src/driver.cpp
branchcpp_gui
changeset 6268 4b5241e5dd10
parent 6254 abc6ad7c035c
child 6298 c30fe89622df
--- a/src/driver.cpp	Tue Feb 27 23:54:28 2007 +0000
+++ b/src/driver.cpp	Wed Feb 28 00:33:40 2007 +0000
@@ -1,5 +1,7 @@
 /* $Id$ */
 
+/** @file driver.cpp */
+
 #include "stdafx.h"
 #include "openttd.h"
 #include "debug.h"
@@ -143,13 +145,13 @@
 		char buffer[256];
 		const char* parms[32];
 
-		// Extract the driver name and put parameter list in parm
+		/* Extract the driver name and put parameter list in parm */
 		ttd_strlcpy(buffer, name, sizeof(buffer));
 		parm = strchr(buffer, ':');
 		parms[0] = NULL;
 		if (parm != NULL) {
 			uint np = 0;
-			// Tokenize the parm.
+			/* Tokenize the parm. */
 			do {
 				*parm++ = '\0';
 				if (np < lengthof(parms) - 1)