summaryrefslogtreecommitdiff
path: root/src/openttd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-11-20 11:59:36 +0000
committerrubidium <rubidium@openttd.org>2011-11-20 11:59:36 +0000
commit9512838a5e9a4ad6f008bd0423e1056eb15cb242 (patch)
tree34a18d2fdc79c98112a384928b4c95fe7553a632 /src/openttd.cpp
parentdfefcab47d563a7274ab8f410a8dcf2abc53cd62 (diff)
downloadopenttd-9512838a5e9a4ad6f008bd0423e1056eb15cb242.tar.xz
(svn r23275) -Codechange: allow loading of the monospace (freetype) font at another moment than the other fonts
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 98025a4ab..a0c16f910 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -697,8 +697,8 @@ int ttd_main(int argc, char *argv[])
/* enumerate language files */
InitializeLanguagePacks();
- /* Initialize FreeType */
- InitFreeType();
+ /* Initialize the regular font for FreeType */
+ InitFreeType(false);
/* This must be done early, since functions use the SetWindowDirty* calls */
InitWindowSystem();