mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Merge pull request #5474 from sepalani/bl-fix
CodeView: Fix missing bl details
This commit is contained in:
commit
7192226971
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user