mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-11 16:49:28 +02:00
SymbolDB: Use an enum class for representing symbol type
This commit is contained in:
@ -224,7 +224,7 @@ void DSPDebuggerLLE::OnSymbolListChange(wxCommandEvent& event)
|
||||
Symbol* pSymbol = static_cast<Symbol*>(m_SymbolList->GetClientData(index));
|
||||
if (pSymbol != nullptr)
|
||||
{
|
||||
if (pSymbol->type == Symbol::SYMBOL_FUNCTION)
|
||||
if (pSymbol->type == Symbol::Type::Function)
|
||||
{
|
||||
JumpToAddress(pSymbol->address);
|
||||
}
|
||||
|
Reference in New Issue
Block a user