From 4acde5346f162c9387f5b74373357b135881d9c3 Mon Sep 17 00:00:00 2001 From: Igor Stepin Date: Thu, 1 May 2003 00:00:10 +0000 Subject: [PATCH] Changed font charset from ANSI to DEFAULT_CHARSET. --- programs/winefile/winefile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/winefile/winefile.c b/programs/winefile/winefile.c index 6bec3932b88..c37629ce39a 100644 --- a/programs/winefile/winefile.c +++ b/programs/winefile/winefile.c @@ -2785,7 +2785,7 @@ static void InitInstance(HINSTANCE hinstance) Globals.haccel = LoadAccelerators(hinstance, MAKEINTRESOURCE(IDA_WINEFILE)); - Globals.hfont = CreateFont(-MulDiv(8,GetDeviceCaps(hdc,LOGPIXELSY),72), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, _T("MS Sans Serif")); + Globals.hfont = CreateFont(-MulDiv(8,GetDeviceCaps(hdc,LOGPIXELSY),72), 0, 0, 0, 0, 0, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, _T("MS Sans Serif")); ReleaseDC(0, hdc);