diff options
author | smatz <smatz@openttd.org> | 2009-08-09 15:58:34 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-08-09 15:58:34 +0000 |
commit | b7e746f72cf41992d86417f7f44917a5d380bcdd (patch) | |
tree | 5708a7b65655a69f851c006b453d36fa43c55d43 | |
parent | e707c824126ff8de5903d7c94f332d670529318a (diff) | |
download | openttd-b7e746f72cf41992d86417f7f44917a5d380bcdd.tar.xz |
(svn r17132) -Fix: comments in company_cmd.cpp
-rw-r--r-- | src/company_cmd.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/company_cmd.cpp b/src/company_cmd.cpp index 15c8eeb84..8ff0b1c66 100644 --- a/src/company_cmd.cpp +++ b/src/company_cmd.cpp @@ -523,10 +523,12 @@ void CompaniesYearlyLoop() /** Change engine renewal parameters * @param tile unused * @param flags operation to perform - * @param - * - p1 bits 16-31 = engine group - * - p2 bits 0-15 = old engine type - * - p2 bits 16-31 = new engine type + * @param p1 packed data + * - bits 16-31 = engine group + * @param p2 packed data + * - bits 0-15 = old engine type + * - bits 16-31 = new engine type + * @param text unused */ CommandCost CmdSetAutoReplace(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text) { @@ -554,7 +556,7 @@ CommandCost CmdSetAutoReplace(TileIndex tile, DoCommandFlag flags, uint32 p1, ui /** * Fill the CompanyNewsInformation struct with the required data. - * @param p the current company. + * @param c the current company. * @param other the other company. */ void CompanyNewsInformation::FillData(const Company *c, const Company *other) |