diff options
| author | Matthew Parlane <parlane@gmail.com> | 2017-03-28 15:36:33 +1300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-28 15:36:33 +1300 |
| commit | 3eff8699377048b9c4303f350c825c882d74adec (patch) | |
| tree | efa40d44cef2b158d2bc76a16d310568c4ba853d /Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp | |
| parent | 22256d1bd88739338a64c92d267967bd06d136cb (diff) | |
| parent | 5b88782e30018b0f66475ec53ae21137aff3072e (diff) | |
Merge pull request #5156 from sepalani/gen-sym
Generate Symbols From menu added
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp index f3e1d72f5e..41ac840b9c 100644 --- a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp @@ -177,6 +177,11 @@ void CCodeWindow::OnSymbolsMenu(wxCommandEvent& event) Host_NotifyMapLoaded(); break; case IDM_SCAN_FUNCTIONS: + PPCAnalyst::FindFunctions(0x80000000, 0x81800000, &g_symbolDB); + // Update GUI + NotifyMapLoaded(); + break; + case IDM_SCAN_SIGNATURES: { PPCAnalyst::FindFunctions(0x80000000, 0x81800000, &g_symbolDB); SignatureDB db; @@ -190,7 +195,6 @@ void CCodeWindow::OnSymbolsMenu(wxCommandEvent& event) { Parent->StatusBarMessage("'%s' not found, no symbol names generated", TOTALDB); } - // HLE::PatchFunctions(); // Update GUI NotifyMapLoaded(); break; |
