summaryrefslogtreecommitdiff
path: root/src/variables.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-03-20 14:01:21 +0000
committerrubidium <rubidium@openttd.org>2007-03-20 14:01:21 +0000
commit154c7c4bcfa6a82ee5ddbcf849cfe8107c15eb3a (patch)
treea511701d4a84dac3d56a45d745eac2bf67ec06d7 /src/variables.h
parent48f2bf9bb1bd7b8859d3527c6c205386471cc4e4 (diff)
downloadopenttd-154c7c4bcfa6a82ee5ddbcf849cfe8107c15eb3a.tar.xz
(svn r9373) -Fix (r9271): the chosen language was not stored nor read properly in/from the cfg.
Diffstat (limited to 'src/variables.h')
-rw-r--r--src/variables.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/variables.h b/src/variables.h
index 7f8771a87..c6c745974 100644
--- a/src/variables.h
+++ b/src/variables.h
@@ -325,7 +325,7 @@ struct Language {
struct DynamicLanguages {
int num; ///< Number of languages
int curr; ///< Currently selected language index
- char curr_file[MAX_PATH]; ///< Currently selected language file (needed for saving the filename of the loaded language
+ char curr_file[MAX_PATH]; ///< Currently selected language file name without path (needed for saving the filename of the loaded language).
StringID dropdown[MAX_LANG + 1]; ///< List of languages in the settings gui
Language ent[MAX_LANG]; ///< Information about the languages
};