From 595693cacbf77b1e6573239d6b7c85c95439058a Mon Sep 17 00:00:00 2001 From: Kingcom Date: Sun, 22 Sep 2013 13:04:31 +0200 Subject: [PATCH] Scan after assembling --- Windows/Debugger/CtrlDisAsmView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Windows/Debugger/CtrlDisAsmView.cpp b/Windows/Debugger/CtrlDisAsmView.cpp index 83653cc5cf..a47b0d052f 100644 --- a/Windows/Debugger/CtrlDisAsmView.cpp +++ b/Windows/Debugger/CtrlDisAsmView.cpp @@ -473,6 +473,7 @@ void CtrlDisAsmView::assembleOpcode(u32 address, std::string defaultText) // In case this is a delay slot or combined instruction, clear cache above it too. if (MIPSComp::jit) MIPSComp::jit->ClearCacheAt(address - 4, 8); + scanFunctions(); redraw(); } else { std::wstring error = ConvertUTF8ToWString(MIPSAsm::GetAssembleError());