diff options
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r-- | src/gui/gui.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index ac9b10bf..642e916b 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -120,7 +120,8 @@ Gui::Gui(Graphics *graphics): // Set bold font path = resman->getPath("fonts/dejavusans-bold.ttf"); try { - boldFont = new TrueTypeFont(path, 11); + const int fontSize = config.getValue("fontSize", 11); + boldFont = new TrueTypeFont(path, fontSize); } catch (gcn::Exception e) { |