diff options
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/macgui/macfontmanager.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/graphics/macgui/macfontmanager.cpp b/graphics/macgui/macfontmanager.cpp index 92cb63be2b..8c35220e31 100644 --- a/graphics/macgui/macfontmanager.cpp +++ b/graphics/macgui/macfontmanager.cpp @@ -340,6 +340,9 @@ void MacFontManager::clearFontMapping() { const Common::String MacFontManager::getFontName(int id, int size, int slant, bool tryGen) { Common::String n; + if (id == 3) // This is Geneva + id = 1; + if (_extraFontNames.contains(id)) { n = _extraFontNames[id]; } else if (id < ARRAYSIZE(fontNames)) { |