From 8c35d2592caeeb1cdd14224abec4e5dc71982597 Mon Sep 17 00:00:00 2001 From: mpohoreski Date: Tue, 28 Feb 2006 00:17:16 +0000 Subject: [PATCH] .15 Fixed Release version drawing of mini-memory over-extended onto buttons in DrawMemory() --- AppleWin/source/Debug.cpp | 2 +- AppleWin/source/Debugger_Display.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AppleWin/source/Debug.cpp b/AppleWin/source/Debug.cpp index 98d9b563..daa40e48 100644 --- a/AppleWin/source/Debug.cpp +++ b/AppleWin/source/Debug.cpp @@ -43,7 +43,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // TODO: COLOR LOAD ["filename"] // See Debugger_Changelong.txt for full details - const int DEBUGGER_VERSION = MAKE_VERSION(2,5,0,14); + const int DEBUGGER_VERSION = MAKE_VERSION(2,5,0,15); // Public _________________________________________________________________________________________ diff --git a/AppleWin/source/Debugger_Display.cpp b/AppleWin/source/Debugger_Display.cpp index 71d57a1e..bf61afd2 100644 --- a/AppleWin/source/Debugger_Display.cpp +++ b/AppleWin/source/Debugger_Display.cpp @@ -1194,7 +1194,7 @@ void DrawMemory (HDC hDC, int line, int iMemDump ) { nCols = MAX_MEM_VIEW_TXT; } - rect.right = MAX( rect.left + (nFontWidth * nCols), DISPLAY_WIDTH ); + rect.right = DISPLAY_WIDTH; SetTextColor( hDC, DebuggerGetColor( FG_INFO_OPCODE ));