(svn r9373) -Fix (r9271): the chosen language was not stored nor read properly in/from the cfg.

This commit is contained in:
rubidium
2007-03-20 14:01:21 +00:00
parent 94db6aa1a2
commit 9f7f58bdfc
2 changed files with 6 additions and 4 deletions

View File

@@ -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
};