From 24098b51590428ec89bbcd4c5abd6d7c2f0ec409 Mon Sep 17 00:00:00 2001 From: ansstuff Date: Sat, 10 Nov 2012 19:50:28 +0000 Subject: [PATCH] Hexeditor: reverted font to Courier --- changelog.txt | 2 ++ src/drivers/win/debugger.cpp | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index cf5b369e..e938b5eb 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,5 @@ +10-Nov-2012 - AnS - win32 hotkeys mapping: added the condition that both commands must have the same EMUCMDFLAG_TASEDITOR, or else they are not considered conflicting +10-Nov-2012 - AnS - win32 hotkeys: disallow unwanted hits of e.g. F1 after pressing Shift+F1 and quickly releasing Shift 05-Nov-2012 - zeromus - support mapper 028 05-Nov-2012 - AnS - Taseditor: fixed lag adjustments when dealing with previously unknown lag state 30-Oct-2012 - zeromus - default stack pointer to $FD instead of $FF diff --git a/src/drivers/win/debugger.cpp b/src/drivers/win/debugger.cpp index 83d20578..8c63fc3e 100644 --- a/src/drivers/win/debugger.cpp +++ b/src/drivers/win/debugger.cpp @@ -2018,9 +2018,9 @@ DebugSystem::DebugSystem() hHexeditorFont = CreateFont(14, 8, /*Height,Width*/ 0,0, /*escapement,orientation*/ FW_REGULAR,FALSE,FALSE,FALSE, /*weight, italic, underline, strikeout*/ - OEM_CHARSET,OUT_DEVICE_PRECIS,CLIP_MASK, /*charset, precision, clipping*/ + ANSI_CHARSET,OUT_DEVICE_PRECIS,CLIP_MASK, /*charset, precision, clipping*/ DEFAULT_QUALITY, DEFAULT_PITCH, /*quality, and pitch*/ - "Terminal"); /*font name*/ + "Courier"); /*font name*/ HDC hdc = GetDC(GetDesktopWindow()); HGDIOBJ old = SelectObject(hdc,hFixedFont);