From 4c2c09178d92688e7bef87645039134899ed2d7d Mon Sep 17 00:00:00 2001 From: mpohoreski Date: Thu, 16 Dec 2010 07:43:12 +0000 Subject: [PATCH] 2.6.2.10 Fixed: Off-by-one when pretty printing 'B' of all bytes treated as data. --- AppleWin/source/Debugger/Debugger_DisassemblerData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppleWin/source/Debugger/Debugger_DisassemblerData.cpp b/AppleWin/source/Debugger/Debugger_DisassemblerData.cpp index 19b26473..63c6c1fd 100644 --- a/AppleWin/source/Debugger/Debugger_DisassemblerData.cpp +++ b/AppleWin/source/Debugger/Debugger_DisassemblerData.cpp @@ -151,7 +151,7 @@ Update_t CmdDisasmDataList (int nArgs) , pData->nStartAddress , CHC_ARG_SEP , CHC_ADDRESS - , pData->nEndAddress + , pData->nEndAddress - 1 ); ConsolePrint( sText ); }