nso: Pass build ID directly

As opposed to converting to string and then back to hex array
This commit is contained in:
Zach Hilman 2019-05-30 19:35:28 -04:00
parent 7d41c1f523
commit c6becfc9f5

View file

@ -152,8 +152,7 @@ std::optional<VAddr> AppLoader_NSO::LoadModule(Kernel::Process& process,
auto& system = Core::System::GetInstance();
const auto cheats = pm->CreateCheatList(system, nso_header.build_id);
if (!cheats.empty()) {
system.RegisterCheatList(cheats, Common::HexToString(nso_header.build_id), load_base,
load_base + program_image.size());
system.RegisterCheatList(cheats, nso_header.build_id, load_base, image_size);
}
}