diff libass/ass_fontconfig.c @ 21279:9040bce9f768

Remove obsolete "no_more_font_messages" hack.
author eugeni
date Sun, 26 Nov 2006 22:53:52 +0000
parents 6196ba31e97e
children c611dfc4cb85
line wrap: on
line diff
--- a/libass/ass_fontconfig.c	Sun Nov 26 22:50:47 2006 +0000
+++ b/libass/ass_fontconfig.c	Sun Nov 26 22:53:52 2006 +0000
@@ -43,8 +43,6 @@
 	int index_default;
 };
 
-extern int no_more_font_messages;
-
 #ifdef HAVE_FONTCONFIG
 /**
  * \brief Low-level font selection.
@@ -127,20 +125,19 @@
 		res = _select_font(priv, family, bold, italic, index);
 	if (!res && priv->family_default) {
 		res = _select_font(priv, priv->family_default, bold, italic, index);
-		if (res && !no_more_font_messages)
+		if (res)
 			mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_UsingDefaultFontFamily, 
 					family, bold, italic, res, *index);
 	}
 	if (!res && priv->path_default) {
 		res = priv->path_default;
 		*index = priv->index_default;
-		if (!no_more_font_messages)
-			mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_UsingDefaultFont, 
-					family, bold, italic, res, *index);
+		mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_UsingDefaultFont, 
+		       family, bold, italic, res, *index);
 	}
 	if (!res) {
 		res = _select_font(priv, "Arial", bold, italic, index);
-		if (res && !no_more_font_messages)
+		if (res)
 			mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_UsingArialFontFamily, 
 					family, bold, italic, res, *index);
 	}