From b9f2ea02c80f5d6752d62a793547f68df8f894ed Mon Sep 17 00:00:00 2001 From: nakst <> Date: Wed, 9 Feb 2022 19:51:35 +0000 Subject: [PATCH] text: remove out font load error logs --- desktop/text.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/desktop/text.cpp b/desktop/text.cpp index 51243b5..df6bc26 100644 --- a/desktop/text.cpp +++ b/desktop/text.cpp @@ -862,7 +862,7 @@ Font FontGet(EsFont key) { } if (!file) { - EsPrint("Could not load font (f%d/w%d/%X).\n", key.family, key.weight, key.flags); + // EsPrint("Could not load font (f%d/w%d/%X).\n", key.family, key.weight, key.flags); key.family = fontManagement.fallback; return FontGet(key); } @@ -873,7 +873,7 @@ Font FontGet(EsFont key) { void *data = EsFileStoreMap(file, &size, ES_MEMORY_MAP_OBJECT_READ_ONLY); if (!data) { - EsPrint("Could not load font (f%d/w%d/%X).\n", key.family, key.weight, key.flags); + // EsPrint("Could not load font (f%d/w%d/%X).\n", key.family, key.weight, key.flags); key.family = fontManagement.fallback; return FontGet(key); } @@ -881,7 +881,7 @@ Font FontGet(EsFont key) { Font font = {}; if (!FontLoad(&font, data, size)) { - EsPrint("Could not load font (f%d/w%d/%X).\n", key.family, key.weight, key.flags); + // EsPrint("Could not load font (f%d/w%d/%X).\n", key.family, key.weight, key.flags); key.family = fontManagement.fallback; return FontGet(key); }