general: Rename GetTitleID to GetProgramID
This commit is contained in:
parent
f178a8ef0c
commit
64275dfbf4
24 changed files with 46 additions and 43 deletions
|
@ -101,7 +101,7 @@ private:
|
|||
|
||||
const auto process =
|
||||
SearchProcessList(kernel.GetProcessList(), [title_id](const auto& proc) {
|
||||
return proc->GetTitleID() == title_id;
|
||||
return proc->GetProgramID() == title_id;
|
||||
});
|
||||
|
||||
if (!process.has_value()) {
|
||||
|
@ -152,7 +152,7 @@ private:
|
|||
|
||||
IPC::ResponseBuilder rb{ctx, 4};
|
||||
rb.Push(ResultSuccess);
|
||||
rb.Push((*process)->GetTitleID());
|
||||
rb.Push((*process)->GetProgramID());
|
||||
}
|
||||
|
||||
const std::vector<Kernel::KProcess*>& process_list;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue