1
0
Fork 0

GUI: Make LOOP conditional instruction, fixes #2366

This commit is contained in:
morsisko 2020-08-06 16:46:25 +02:00 committed by Duncan Ogilvie
parent 89af17f380
commit 49516b2c6b
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ Instruction_t QBeaEngine::DisassembleAt(const byte_t* data, duint size, duint or
branchType = Instruction_t::Unconditional;
else if(cp.IsBranchType(Zydis::BTCall))
branchType = Instruction_t::Call;
else if(cp.IsBranchType(Zydis::BTCondJmp))
else if(cp.IsBranchType(Zydis::BTCondJmp) || cp.IsBranchType(Zydis::BTLoop))
branchType = Instruction_t::Conditional;
}
else