From c1afdc6f4720a546bbbc28260f50032a3140e330 Mon Sep 17 00:00:00 2001 From: Sepalani Date: Wed, 24 May 2017 20:34:23 +0100 Subject: [PATCH] CodeView: Fix missing bl details --- Source/Core/DolphinWX/Debugger/CodeView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/Debugger/CodeView.cpp b/Source/Core/DolphinWX/Debugger/CodeView.cpp index fe3c583403..d9fd00b24d 100644 --- a/Source/Core/DolphinWX/Debugger/CodeView.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeView.cpp @@ -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);