summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Oshmyan <chortos@inbox.lv>2021-09-01 18:42:09 +0300
committerOleg Oshmyan <chortos@inbox.lv>2021-09-09 02:32:49 +0300
commit40bb8439fff6525f557c888f82a602fdeef69374 (patch)
treedda28e274068f2a09e5bf35271610a46853b30c7
parentd170d895941b70c5a4bb7a5f555132acb34e9013 (diff)
downloadlibass-40bb8439fff6525f557c888f82a602fdeef69374.tar.bz2
libass-40bb8439fff6525f557c888f82a602fdeef69374.tar.xz
fontselect: show codepoint in "failed to find any fallback" warning
-rw-r--r--libass/ass_fontselect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libass/ass_fontselect.c b/libass/ass_fontselect.c
index 3600dce..b47c4bc 100644
--- a/libass/ass_fontselect.c
+++ b/libass/ass_fontselect.c
@@ -954,8 +954,8 @@ char *ass_font_select(ASS_FontSelector *priv,
italic, res, *index, *postscript_name ? *postscript_name : "(none)");
else
ass_msg(priv->library, MSGL_WARN,
- "fontselect: failed to find any fallback for font: "
- "(%s, %d, %d)", family, bold, italic);
+ "fontselect: failed to find any fallback with glyph 0x%X for font: "
+ "(%s, %d, %d)", code, family, bold, italic);
return res;
}