diff options
| author | Markus Wick <degasus@users.noreply.github.com> | 2016-09-14 08:07:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-14 08:07:52 +0200 |
| commit | ab37b0282ac0a2b250546420f9ba2a9a3f7625ed (patch) | |
| tree | 63c4a88ec76aa933dd3ba3b223cb614b3131fa57 /Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp | |
| parent | 54a643a4a30caf2d6349139832695ec9e8e24ff6 (diff) | |
| parent | 00ddbee786f6a2a15c1e19e5ac4b393f6c6f9094 (diff) | |
Merge pull request #4211 from lioncash/symbol
SymbolDB: Minor changes
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp index 8a46245f37..0a1300146b 100644 --- a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp @@ -485,7 +485,7 @@ void CCodeWindow::OnSymbolListChange(wxCommandEvent& event) Symbol* pSymbol = static_cast<Symbol*>(symbols->GetClientData(index)); if (pSymbol != nullptr) { - if (pSymbol->type == Symbol::SYMBOL_DATA) + if (pSymbol->type == Symbol::Type::Data) { if (m_MemoryWindow) // && m_MemoryWindow->IsVisible()) m_MemoryWindow->JumpToAddress(pSymbol->address); |
