# HG changeset patch # User diego # Date 1156692791 0 # Node ID 4186a45ce6c8dd4e0b09230be52d0c31f7001e8e # Parent ec7090509b380a400385aa4579dd1e4b783aa013 Clarify messages. diff -r ec7090509b38 -r 4186a45ce6c8 libvo/font_load.c --- a/libvo/font_load.c Sun Aug 27 10:57:29 2006 +0000 +++ b/libvo/font_load.c Sun Aug 27 15:33:11 2006 +0000 @@ -104,7 +104,7 @@ if (first) { if (!sor[0] || sor[1] == 1 || (sor[0] == 'M' && sor[1] == 'Z') || (sor[0] == 0x1f && sor[1] == 0x8b) || (sor[0] == 1 && sor[1] == 0x66)) { - mp_msg(MSGT_OSD, MSGL_ERR, "%s doesn't look like a font description, ignoring.\n", fname); + mp_msg(MSGT_OSD, MSGL_ERR, "%s doesn't look like a bitmap font description, ignoring.\n", fname); goto fail_out; } first = 0; @@ -322,7 +322,7 @@ desc->font[' ']=-1; desc->width[' ']=desc->spacewidth; -mp_msg(MSGT_OSD, MSGL_V, "Font %s loaded successfully! (%d chars)\n",fname,chardb); +mp_msg(MSGT_OSD, MSGL_V, "Bitmap font %s loaded successfully! (%d chars)\n",fname,chardb); return desc;