Merge pull request #5474 from sepalani/bl-fix

CodeView: Fix missing bl details
This commit is contained in:
Mat M
2017-05-27 17:40:18 -04:00
committed by GitHub

View File

@ -496,7 +496,7 @@ void CCodeView::OnPaint(wxPaintEvent& event)
// look for hex strings to decode branches // look for hex strings to decode branches
std::string hex_str; std::string hex_str;
size_t pos = operands.find("0x8"); size_t pos = operands.find("0x");
if (pos != std::string::npos) if (pos != std::string::npos)
{ {
hex_str = operands.substr(pos); hex_str = operands.substr(pos);