CodeView: Fix missing bl details

This commit is contained in:
Sepalani 2017-05-24 20:34:23 +01:00
parent 643b218c1d
commit c1afdc6f47
1 changed files with 1 additions and 1 deletions

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);