Added progress messages while building font metrics.
diff --git a/graphics/x11drv/xfont.c b/graphics/x11drv/xfont.c
index 9e58bac..632bf52 100644
--- a/graphics/x11drv/xfont.c
+++ b/graphics/x11drv/xfont.c
@@ -2036,6 +2036,7 @@
if (!(typeface = HeapAlloc(GetProcessHeap(), 0, strlen(x_pattern[i])+1))) break;
strcpy( typeface, x_pattern[i] );
+ if (i % 10 == 0) MESSAGE("Font metrics: %.1f%% done\n", 100.0 * i / x_count);
lfd = LFD_Parse(typeface);
if (!lfd)
@@ -2179,6 +2180,7 @@
fr = fr->next;
}
+ MESSAGE("Font metrics: 100.0%% done\n");
return n_ff;
}