[SYSSETUP] Fix bold font (#1799)
[reactos.git] / dll / win32 / syssetup / wizard.c
index 8422a9c..595a2a7 100644 (file)
@@ -107,7 +107,7 @@ CreateBoldFont(VOID)
     hDc = GetDC(NULL);
 
     tmpFont.lfHeight = -MulDiv(8, GetDeviceCaps(hDc, LOGPIXELSY), 72);
-    tmpFont.lfWeight = FW_HEAVY;
+    tmpFont.lfWeight = FW_BOLD;
     wcscpy(tmpFont.lfFaceName, L"MS Shell Dlg");
 
     hBoldFont = CreateFontIndirectW(&tmpFont);