summaryrefslogtreecommitdiff
path: root/src/openttd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-11-20 11:52:11 +0000
committerrubidium <rubidium@openttd.org>2011-11-20 11:52:11 +0000
commit0a4a75b0afbeeab6be1eb7ccfd03ef603a4646b9 (patch)
treee715f7238d2685980dd5fd352505346504eb9783 /src/openttd.cpp
parent2075bc702c673067113dc127a7d3dca91eb13ffa (diff)
downloadopenttd-0a4a75b0afbeeab6be1eb7ccfd03ef603a4646b9.tar.xz
(svn r23273) -Codechange: allow passing a MissingGlyphSearcher to CheckForMissingGlyphs (default to the language pack strings)
Diffstat (limited to 'src/openttd.cpp')
-rw-r--r--src/openttd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp
index 28fb91d7a..98025a4ab 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -334,7 +334,7 @@ static void LoadIntroGame(bool load_newgrfs = true)
_cursor.fix_at = false;
CheckForMissingSprites();
- CheckForMissingGlyphsInLoadedLanguagePack();
+ CheckForMissingGlyphs();
/* Play main theme */
if (_music_driver->IsSongPlaying()) ResetMusic();
@@ -810,7 +810,7 @@ int ttd_main(int argc, char *argv[])
LoadIntroGame(false);
- CheckForMissingGlyphsInLoadedLanguagePack();
+ CheckForMissingGlyphs();
ScanNewGRFFiles(scanner);