GUI: Make LOOP conditional instruction, fixes #2366
This commit is contained in:
parent
89af17f380
commit
49516b2c6b
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue