diff options
Diffstat (limited to 'graphics/macgui')
-rw-r--r-- | graphics/macgui/macfontmanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/macgui/macfontmanager.cpp b/graphics/macgui/macfontmanager.cpp index f57cc9b919..81349551d8 100644 --- a/graphics/macgui/macfontmanager.cpp +++ b/graphics/macgui/macfontmanager.cpp @@ -267,7 +267,7 @@ const Font *MacFontManager::getFont(MacFont macFont) { font = FontMan.getFontByName(macFont.getName()); if (!font) { - warning("Cannot load font '%s'", macFont.getName().c_str()); + debug(1, "Cannot load font '%s'", macFont.getName().c_str()); font = FontMan.getFontByName(MacFont(kMacFontChicago, 12).getName()); } @@ -375,7 +375,7 @@ void MacFontManager::generateFontSubstitute(MacFont &macFont) { } if (sizes.empty()) { - warning("No viable substitute found for font %s", getFontName(macFont)); + debug(1, "No viable substitute found for font %s", getFontName(macFont)); return; } |