[SYSSETUP] Fix bold font (#1799)

The font of radio buttons at ReactOS 2nd setup was wrong and too heavy. CORE-16291
This commit is contained in:
Katayama Hirofumi MZ 2019-08-05 09:44:25 +09:00 committed by GitHub
parent b3f55ba2a6
commit 836e3107ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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);