diff options
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r-- | src/gui/gui.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 6803be65..930d4939 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -103,14 +103,16 @@ Gui::Gui(Graphics *graphics): ResourceManager *resman = ResourceManager::getInstance(); // Set global font - std::string path = resman->getPath("fonts/dejavusans.ttf"); + std::string path = resman->getPath( + branding.getValue("guiFont","fonts/dejavusans.ttf")); if (!path.empty()) { mGuiFont = new TrueTypeFont(path.c_str(), 11); } // Set speech font - path = resman->getPath("fonts/dejavusans.ttf"); + path = resman->getPath( + branding.getValue("speechFont","fonts/dejavusans.ttf")); if (!path.empty()) { speechFont = new TrueTypeFont(path.c_str(), 11); |