lr: ncm::ProgramId::Invalid -> ncm::InvalidProgramId

This commit is contained in:
Adubbz 2020-03-07 21:47:32 +11:00
parent 67c858e297
commit e70a2a621a

View file

@ -85,7 +85,7 @@ namespace ams::lr {
}
Result RegisteredLocationResolverImpl::RegisterProgramPathDeprecated(const Path &path, ncm::ProgramId id) {
RegisterPath(this->registered_program_locations, id, path, ncm::ProgramId::Invalid);
RegisterPath(this->registered_program_locations, id, path, ncm::InvalidProgramId);
return ResultSuccess();
}
@ -115,7 +115,7 @@ namespace ams::lr {
}
Result RegisteredLocationResolverImpl::RegisterHtmlDocumentPathDeprecated(const Path &path, ncm::ProgramId id) {
RegisterPath(this->registered_html_docs_locations, id, path, ncm::ProgramId::Invalid);
RegisterPath(this->registered_html_docs_locations, id, path, ncm::InvalidProgramId);
return ResultSuccess();
}