summaryrefslogtreecommitdiff
path: root/src/settings.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-09-19 15:17:47 +0000
committerrubidium <rubidium@openttd.org>2009-09-19 15:17:47 +0000
commitca91a97826ad5de23855d0fe9a219f4889a8cd9e (patch)
tree87928a5a55ff401ea65443b8d291f609e9b46cf8 /src/settings.cpp
parent89df436f84707182456461e3259e053303feb846 (diff)
downloadopenttd-ca91a97826ad5de23855d0fe9a219f4889a8cd9e.tar.xz
(svn r17579) -Fix: remove doxygen docs for removed parameters, or change @param to @tparam if necessary
Diffstat (limited to 'src/settings.cpp')
-rw-r--r--src/settings.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/settings.cpp b/src/settings.cpp
index ac01cfd30..ba7cec8ad 100644
--- a/src/settings.cpp
+++ b/src/settings.cpp
@@ -1492,10 +1492,8 @@ CommandCost CmdChangeCompanySetting(TileIndex tile, DoCommandFlag flags, uint32
/** Top function to save the new value of an element of the Settings struct
* @param index offset in the SettingDesc array of the Settings struct which
* identifies the setting member we want to change
- * @param object pointer to a valid settings struct that has its settings change.
- * This only affects setting-members that are not needed to be the same on all
- * clients in a network game.
- * @param value new value of the setting */
+ * @param value new value of the setting
+ */
bool SetSettingValue(uint index, int32 value)
{
const SettingDesc *sd = &_settings[index];
@@ -1526,8 +1524,8 @@ bool SetSettingValue(uint index, int32 value)
/** Top function to save the new value of an element of the Settings struct
* @param index offset in the SettingDesc array of the CompanySettings struct
* which identifies the setting member we want to change
- * @param object pointer to a valid CompanySettings struct that has its settings changed.
- * @param value new value of the setting */
+ * @param value new value of the setting
+ */
void SetCompanySetting(uint index, int32 value)
{
const SettingDesc *sd = &_company_settings[index];