diff --git a/reactos/subsys/win32k/objects/text.c b/reactos/subsys/win32k/objects/text.c index 47475774f70..1fe89e72b91 100644 --- a/reactos/subsys/win32k/objects/text.c +++ b/reactos/subsys/win32k/objects/text.c @@ -130,9 +130,8 @@ W32kAddFontResource(LPCWSTR Filename) FontGDI->TextMetric.tmDescent = face->size->metrics.descender; // units below baseline FontGDI->TextMetric.tmHeight = FontGDI->TextMetric.tmAscent + FontGDI->TextMetric.tmDescent; - DbgPrint("Family name: %s\n", face->family_name); - DbgPrint("Style name: %s\n", face->style_name); - DbgPrint("Num glyphs: %u\n", face->num_glyphs); + DbgPrint("Win32k: Font loaded: %s (%s)\n", face->family_name, face->style_name); + DPRINT("Num glyphs: %u\n", face->num_glyphs); // Add this font resource to the font table FontTable[FontsLoaded].hFont = NewFont;