DBG+GUI: FIXEZZ
This commit is contained in:
parent
5795fdc771
commit
e1fc0926a4
|
@ -414,6 +414,7 @@ void DebugUpdateGui(duint disasm_addr, bool stack)
|
|||
strcat_s(threadName, " ");
|
||||
sprintf_s(title, GuiTranslateText(QT_TRANSLATE_NOOP("DBG", "File: %s - PID: %X - %sThread: %s%X%s")), szBaseFileName, fdProcessInfo->dwProcessId, modtext, threadName, currentThreadId, threadswitch);
|
||||
GuiUpdateWindowTitle(title);
|
||||
GuiUpdateDisassemblyView();
|
||||
GuiUpdateRegisterView();
|
||||
GuiUpdateThreadView();
|
||||
GuiUpdatePatches();
|
||||
|
|
|
@ -1591,7 +1591,7 @@ void Disassembly::prepareDataRange(dsint startRva, dsint endRva, const std::func
|
|||
int i = 0;
|
||||
while(true)
|
||||
{
|
||||
if(wAddr >= endRva)
|
||||
if(wAddr > endRva)
|
||||
break;
|
||||
wAddrPrev = wAddr;
|
||||
auto wInst = DisassembleAt(wAddr);
|
||||
|
|
Loading…
Reference in New Issue