mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
SymbolDB: Namespace code under the Common namespace
Moves more common code into the Common namespace where it belongs.
This commit is contained in:
@ -131,7 +131,7 @@ wxString CMemoryView::ReadMemoryAsString(u32 address) const
|
||||
str += ' ';
|
||||
}
|
||||
|
||||
Symbol* sym = g_symbolDB.GetSymbolFromAddr(mem_data);
|
||||
Common::Symbol* sym = g_symbolDB.GetSymbolFromAddr(mem_data);
|
||||
if (sym)
|
||||
{
|
||||
str += StringFromFormat(" # -> %s", sym->name.c_str());
|
||||
|
Reference in New Issue
Block a user