diff options
author | Eugene Sandulenko | 2017-03-12 15:53:21 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2017-03-12 16:20:00 +0100 |
commit | 319bbcfbf16b04b695c0d4c3e5f57de8a2928f3e (patch) | |
tree | 95c283d3488fc21ea42669a5de147d5d261b3bd3 /graphics/macgui | |
parent | 7e05b1e94dc25e1706b9e959cfbf34087c94f578 (diff) | |
download | scummvm-rg350-319bbcfbf16b04b695c0d4c3e5f57de8a2928f3e.tar.gz scummvm-rg350-319bbcfbf16b04b695c0d4c3e5f57de8a2928f3e.tar.bz2 scummvm-rg350-319bbcfbf16b04b695c0d4c3e5f57de8a2928f3e.zip |
GRAPHICS: Hid noisy warning in MacFontManager
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; } |