"Yuri Kozlov" kozlov.y@gmail.com wrote:
changelog: gdi: old version freetype installed warning added
--- wine/dlls/gdi/freetype.c 2005-08-20 08:33:00.000000000 +0400 +++ bwine/dlls/gdi/freetype.c 2005-08-27 16:05:47.000000000 +0400 @@ -438,6 +438,7 @@ /* There are too many bugs in FreeType < 2.1.9 for bitmap font support */ if(!FT_IS_SCALABLE(ft_face) && FT_SimpleVersion < ((2 << 16) | (1 << 8) | (9 << 0))) { pFT_Done_Face(ft_face);
WARN("Please, update FreeType library (>=2.1.9) -- font %s will not be load\n", debugstr_a(file));
If it's supposed to be a user visible message then it should use MESSAGE instead of a WARN.
2005/8/27, Dmitry Timoshkov dmitry@baikal.ru:
"Yuri Kozlov" kozlov.y@gmail.com wrote:
changelog: gdi: old version freetype installed warning added
--- wine/dlls/gdi/freetype.c 2005-08-20 08:33:00.000000000 +0400 +++ bwine/dlls/gdi/freetype.c 2005-08-27 16:05:47.000000000 +0400 @@ -438,6 +438,7 @@ /* There are too many bugs in FreeType < 2.1.9 for bitmap font support */ if(!FT_IS_SCALABLE(ft_face) && FT_SimpleVersion < ((2 << 16) | (1 << 8) | (9 << 0))) { pFT_Done_Face(ft_face);
WARN("Please, update FreeType library (>=2.1.9) -- font %s will not be load\n", debugstr_a(file));
If it's supposed to be a user visible message then it should use MESSAGE instead of a WARN.
Yes, I think MESSAGE is more correct.