mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
HLE: fix unreachable code warning
This commit is contained in:
parent
f730b775b6
commit
90f863a7a3
@ -247,8 +247,10 @@ u32 UnPatch(const std::string& patch_name)
|
||||
return addr;
|
||||
}
|
||||
|
||||
for (const auto& symbol : g_symbolDB.GetSymbolsFromName(patch_name))
|
||||
const auto& symbols = g_symbolDB.GetSymbolsFromName(patch_name);
|
||||
if (symbols.size())
|
||||
{
|
||||
const auto& symbol = symbols[0];
|
||||
for (u32 addr = symbol->address; addr < symbol->address + symbol->size; addr += 4)
|
||||
{
|
||||
s_original_instructions.erase(addr);
|
||||
|
Loading…
x
Reference in New Issue
Block a user