changeset 19551:4186a45ce6c8

Clarify messages.
author diego
date Sun, 27 Aug 2006 15:33:11 +0000
parents ec7090509b38
children b4e2c17c2bdf
files libvo/font_load.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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;