From ad54cfcf94497c1ac12c268b74d4beec3b274b51 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Wed, 24 Feb 2010 03:36:42 +0000 Subject: [PATCH] - Change the log window to use DejaVu Sans instead of Bitstream Vera Sans, because Silverex's X-Chat comes with the former now. Unfortunately, I can't seem to actually set the font when my system default code page is 932, since it wants to use some Kanji- compatible font instead. I wonder if I can still use the Unicode RichEdit control with Windows 9x. (Does it even matter? Windows 9x users make up less than 0.1% of all visitors to zdoom.org these days.) SVN r2176 (trunk) --- src/win32/i_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win32/i_main.cpp b/src/win32/i_main.cpp index af57aaef3..69b1ae749 100644 --- a/src/win32/i_main.cpp +++ b/src/win32/i_main.cpp @@ -476,7 +476,7 @@ LRESULT CALLBACK LConProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) format.yHeight = 200; format.crTextColor = RGB(223,223,223); format.bPitchAndFamily = FF_SWISS | VARIABLE_PITCH; - strcpy (format.szFaceName, "Bitstream Vera Sans"); // At least I have it. :p + strcpy(format.szFaceName, "DejaVu Sans"); // At least I have it. :p SendMessage (view, EM_SETCHARFORMAT, SCF_ALL, (LPARAM)&format); ConWindow = view;