From 6dbf9f2f41e82a05d284c72ab3acbae949c3e904 Mon Sep 17 00:00:00 2001 From: belugas Date: Fri, 23 Feb 2007 18:55:07 +0000 Subject: (svn r8862) -Cleanup: doxygen changes, again. Mostly @files missing tags and a few comments style. Some documentation addition, when i can easily supply them --- src/driver.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/driver.cpp') diff --git a/src/driver.cpp b/src/driver.cpp index 6c25cfc8c..bc02df745 100644 --- a/src/driver.cpp +++ b/src/driver.cpp @@ -1,5 +1,7 @@ /* $Id$ */ +/** @file driver.cpp */ + #include "stdafx.h" #include "openttd.h" #include "debug.h" @@ -143,13 +145,13 @@ void LoadDriver(int driver, const char *name) 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) -- cgit v1.2.3-54-g00ecf