mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-20 17:47:52 -05:00
general: Rename GetTitleID to GetProgramID
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user