.15 Fixed Release version drawing of mini-memory over-extended onto buttons in DrawMemory()

This commit is contained in:
mpohoreski 2006-02-28 00:17:16 +00:00
parent 6748457c97
commit 8c35d2592c
2 changed files with 2 additions and 2 deletions

View File

@ -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 _________________________________________________________________________________________

View File

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