diff --git a/libraries/libstratosphere/source/lr/lr_registered_location_resolver_impl.cpp b/libraries/libstratosphere/source/lr/lr_registered_location_resolver_impl.cpp index ce4755e03..d499c1423 100644 --- a/libraries/libstratosphere/source/lr/lr_registered_location_resolver_impl.cpp +++ b/libraries/libstratosphere/source/lr/lr_registered_location_resolver_impl.cpp @@ -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(); }