Fix embedded spu elf patching

This commit is contained in:
Malcolm Jestadt 2020-06-13 16:31:11 -04:00 committed by Megamouse
parent e485c9c79c
commit 746615a937

View file

@ -394,13 +394,13 @@ std::size_t patch_engine::apply_patch(const std::string& name, u8* dst, u32 file
if constexpr (check_local_storage) if constexpr (check_local_storage)
{ {
offset -= ls_addr;
if (offset < ls_addr || offset >= (ls_addr + filesz)) if (offset < ls_addr || offset >= (ls_addr + filesz))
{ {
// This patch is out of range for this segment // This patch is out of range for this segment
continue; continue;
} }
offset -= ls_addr;
} }
auto ptr = dst + offset; auto ptr = dst + offset;