mirror of https://gitlab.com/nakst/essence
text: remove out font load error logs
This commit is contained in:
parent
ecb36d5e21
commit
b9f2ea02c8
desktop
|
@ -862,7 +862,7 @@ Font FontGet(EsFont key) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!file) {
|
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;
|
key.family = fontManagement.fallback;
|
||||||
return FontGet(key);
|
return FontGet(key);
|
||||||
}
|
}
|
||||||
|
@ -873,7 +873,7 @@ Font FontGet(EsFont key) {
|
||||||
void *data = EsFileStoreMap(file, &size, ES_MEMORY_MAP_OBJECT_READ_ONLY);
|
void *data = EsFileStoreMap(file, &size, ES_MEMORY_MAP_OBJECT_READ_ONLY);
|
||||||
|
|
||||||
if (!data) {
|
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;
|
key.family = fontManagement.fallback;
|
||||||
return FontGet(key);
|
return FontGet(key);
|
||||||
}
|
}
|
||||||
|
@ -881,7 +881,7 @@ Font FontGet(EsFont key) {
|
||||||
Font font = {};
|
Font font = {};
|
||||||
|
|
||||||
if (!FontLoad(&font, data, size)) {
|
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;
|
key.family = fontManagement.fallback;
|
||||||
return FontGet(key);
|
return FontGet(key);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue