From 461dcb6a772db2c9ced3e1c322c63b0614677b97 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Tue, 8 Aug 2017 04:58:03 +1000 Subject: [PATCH] log failure to get glyph, but keep drawing (nw) --- src/osd/modules/font/font_osx.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/osd/modules/font/font_osx.cpp b/src/osd/modules/font/font_osx.cpp index dc79e34d534..5074c1f4bcd 100644 --- a/src/osd/modules/font/font_osx.cpp +++ b/src/osd/modules/font/font_osx.cpp @@ -138,10 +138,7 @@ bool osd_font_osx::get_bitmap(char32_t chnum, bitmap_argb32 &bitmap, std::int32_ CFIndex const count(1); CGGlyph glyph; if (!CTFontGetGlyphsForCharacters(m_font, &uni_char, &glyph, count)) - { osd_printf_verbose("osd_font_osd::get_bitmap: failed to get glyph for U+%04X\n", unsigned(chnum)); - return false; - } // try to get glyph metrics CGRect const bounds(CTFontGetBoundingRectsForGlyphs(m_font, kCTFontHorizontalOrientation, &glyph, nullptr, count));