Skip to content

Commit

Permalink
Fix n71map on 15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Cryptiiiic committed Aug 27, 2023
1 parent a2bdcdc commit c424e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ibootpatchfinder64_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ std::vector<patch> ibootpatchfinder64_base::get_boot_arg_patch(const char *boota
debug("Relocating boot-args string...\n");
loc_t cert_str_loc = 0;
loc_t bootarg_loc1 = _vmem->memmem(_270ZEROES, 270, default_boot_args_xref);
if(_chipid == 8010 || ((_chipid == 8000 || _chipid == 8003) && !_7429_0)) {
if(_chipid == 8010 || _chipid == 8003 || (_chipid == 8000 && !_7429_0)) {
debug("Finding another bootarg location...\n");
bootarg_loc1 = _vmem->memmem(_270ZEROES, 270, bootarg_loc1 + 270);
}
Expand Down

0 comments on commit c424e13

Please # to comment.