diff options
| author | Sepalani <sepalani@hotmail.fr> | 2017-03-25 00:52:17 +0000 |
|---|---|---|
| committer | Sepalani <sepalani@hotmail.fr> | 2017-03-28 02:05:27 +0100 |
| commit | 5b88782e30018b0f66475ec53ae21137aff3072e (patch) | |
| tree | 315c41fcb5874bfae2a082dacae641fd6fec802e /Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp | |
| parent | c5cc781205be6125c9214cf0100b241e36491bd2 (diff) | |
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; |
