summaryrefslogtreecommitdiff
path: root/src/strings.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-11-13 11:28:55 +0000
committerrubidium <rubidium@openttd.org>2010-11-13 11:28:55 +0000
commita664227c8e98a93856ae2c23d2efd63d3eaf0fa2 (patch)
tree22ac136e822aaa961b6239995a57c82d90829dd8 /src/strings.cpp
parentf4e4056aed7f464f6b3de47ffbd1a1a93979fe84 (diff)
downloadopenttd-a664227c8e98a93856ae2c23d2efd63d3eaf0fa2.tar.xz
(svn r21162) -Codechange: move the config "field" for the language file out of dynlang
Diffstat (limited to 'src/strings.cpp')
-rw-r--r--src/strings.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/strings.cpp b/src/strings.cpp
index 2d9da5211..06565064d 100644
--- a/src/strings.cpp
+++ b/src/strings.cpp
@@ -40,10 +40,11 @@
#include "table/strings.h"
#include "table/control_codes.h"
+char _config_language_file[MAX_PATH]; ///< The file (name) stored in the configuration.
const LanguageMetadata *_current_language = NULL; ///< The currently loaded language.
DynamicLanguages _dynlang; ///< Language information of the program.
-TextDirection _current_text_dir; ///< Text direction of the currently selected language
+TextDirection _current_text_dir; ///< Text direction of the currently selected language.
uint64 _decode_parameters[20]; ///< Global array of string parameters. To access, use #SetDParam.
static char *StationGetSpecialString(char *buff, int x, const char *last);
@@ -1387,7 +1388,7 @@ bool ReadLanguagePack(int lang_index)
_current_language = &_dynlang.ent[lang_index];
_current_text_dir = (TextDirection)_current_language->text_dir;
const char *c_file = strrchr(_current_language->file, PATHSEPCHAR) + 1;
- strecpy(_dynlang.curr_file, c_file, lastof(_dynlang.curr_file));
+ strecpy(_config_language_file, c_file, lastof(_config_language_file));
SetCurrentGrfLangID(_current_language->newgrflangid);
InitializeSortedCargoSpecs();
@@ -1548,7 +1549,7 @@ void InitializeLanguagePacks()
* configuration file, local environment and last, if nothing found,
* english. If def equals -1, we have not picked a default language */
const char *lang_file = strrchr(_dynlang.ent[i].file, PATHSEPCHAR) + 1;
- if (strcmp(lang_file, _dynlang.curr_file) == 0) chosen_language = i;
+ if (strcmp(lang_file, _config_language_file) == 0) chosen_language = i;
if (chosen_language == -1) {
if (strcmp (_dynlang.ent[i].isocode, "en_GB") == 0) en_GB_fallback = i;