2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

symbols: Simplify GetSymbol

This commit is contained in:
Lioncash 2015-09-30 11:51:06 -04:00
parent a67df5ad94
commit 052eacc3b9

View file

@ -29,17 +29,14 @@ namespace Symbols
TSymbol GetSymbol(u32 _address) TSymbol GetSymbol(u32 _address)
{ {
TSymbolsMap::iterator foundSymbolItr; const auto iter = g_symbols.find(_address);
TSymbol symbol;
foundSymbolItr = g_symbols.find(_address); if (iter != g_symbols.end())
if (foundSymbolItr != g_symbols.end()) return iter->second;
{
symbol = (*foundSymbolItr).second; return {};
} }
return symbol;
}
const std::string GetName(u32 _address) const std::string GetName(u32 _address)
{ {
return GetSymbol(_address).name; return GetSymbol(_address).name;