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, " ");
|
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);
|
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);
|
GuiUpdateWindowTitle(title);
|
||||||
|
GuiUpdateDisassemblyView();
|
||||||
GuiUpdateRegisterView();
|
GuiUpdateRegisterView();
|
||||||
GuiUpdateThreadView();
|
GuiUpdateThreadView();
|
||||||
GuiUpdatePatches();
|
GuiUpdatePatches();
|
||||||
|
|
|
@ -1591,7 +1591,7 @@ void Disassembly::prepareDataRange(dsint startRva, dsint endRva, const std::func
|
||||||
int i = 0;
|
int i = 0;
|
||||||
while(true)
|
while(true)
|
||||||
{
|
{
|
||||||
if(wAddr >= endRva)
|
if(wAddr > endRva)
|
||||||
break;
|
break;
|
||||||
wAddrPrev = wAddr;
|
wAddrPrev = wAddr;
|
||||||
auto wInst = DisassembleAt(wAddr);
|
auto wInst = DisassembleAt(wAddr);
|
||||||
|
|
Loading…
Reference in New Issue