summaryrefslogtreecommitdiff
path: root/src/settings_internal.h
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2012-05-12 10:07:18 +0000
committeralberth <alberth@openttd.org>2012-05-12 10:07:18 +0000
commit34a11d4b8d7de77cdff0e2c2400794ae31b3ba89 (patch)
treeafcfe9a5d1fb97f9a81c222da244411e4c465506 /src/settings_internal.h
parentd20a28cfb5cdc37ac935f3d0f533ee836214b2f9 (diff)
downloadopenttd-34a11d4b8d7de77cdff0e2c2400794ae31b3ba89.tar.xz
(svn r24233) -Codechange: Rename 'val_str' to 'str_val' to better match with 'strval' in the ini files.
Diffstat (limited to 'src/settings_internal.h')
-rw-r--r--src/settings_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settings_internal.h b/src/settings_internal.h
index b4f87f819..f829fb395 100644
--- a/src/settings_internal.h
+++ b/src/settings_internal.h
@@ -67,7 +67,7 @@ struct SettingDescBase {
int32 interval; ///< the interval to use between settings in the 'settings' window. If interval is '0' the interval is dynamically determined
const char *many; ///< ONE/MANY_OF_MANY: string of possible values for this type
StringID str; ///< (translated) string with descriptive text; gui and console
- StringID val_str; ///< (translated) first string describing the value.
+ StringID str_val; ///< (Translated) first string describing the value.
OnChange *proc; ///< callback procedure for when the value is changed
OnConvert *proc_cnvt; ///< callback procedure when loading value mechanism fails
};