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
commit 7192226971

View File

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