diff options
author | rubidium <rubidium@openttd.org> | 2011-12-16 22:03:59 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-12-16 22:03:59 +0000 |
commit | 719b4707dc7f04dec672d6b5d643100670c78f47 (patch) | |
tree | 74c189eb612fc2304ebed7eaed9bd035eee2382b /src | |
parent | ed816477ecb45ddccab8105222ff20d8f930955f (diff) | |
download | openttd-719b4707dc7f04dec672d6b5d643100670c78f47.tar.xz |
(svn r23563) -Cleanup: remove useless global variable from strgen; it would always be false at the point it would be read
Diffstat (limited to 'src')
-rw-r--r-- | src/strgen/strgen.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/strgen/strgen.cpp b/src/strgen/strgen.cpp index f3462b415..2c2e1ecf4 100644 --- a/src/strgen/strgen.cpp +++ b/src/strgen/strgen.cpp @@ -45,7 +45,6 @@ struct Case { Case *next; }; -static bool _masterlang; ///< Whether we are loading the master language static bool _translated; ///< Whether the current language is not the master language static bool _translation; ///< Is the current file actually a translation or not static const char *_file = "(unknown file)"; ///< The filename of the input, so we can refer to it in errors/warnings @@ -1112,7 +1111,7 @@ static void WriteLangfile(const char *filename) cmdp = ls->english; } - _translated = _masterlang || (cmdp != ls->english); + _translated = cmdp != ls->english; if (casep != NULL) { const Case *c; @@ -1323,7 +1322,6 @@ int CDECL main(int argc, char *argv[]) mkpath(pathbuf, lengthof(pathbuf), src_dir, "english.txt"); /* parse master file */ - _masterlang = true; ParseFile(pathbuf, true); MakeHashOfStrings(); if (_errors != 0) return 1; @@ -1338,7 +1336,6 @@ int CDECL main(int argc, char *argv[]) mkpath(pathbuf, lengthof(pathbuf), src_dir, "english.txt"); /* parse master file and check if target file is correct */ - _masterlang = false; ParseFile(pathbuf, true); MakeHashOfStrings(); ParseFile(replace_pathsep(mgo.argv[0]), false); // target file |