From e70a2a621a8426e845f895f7c368f1199aca53cd Mon Sep 17 00:00:00 2001 From: Adubbz Date: Sat, 7 Mar 2020 21:47:32 +1100 Subject: [PATCH] lr: ncm::ProgramId::Invalid -> ncm::InvalidProgramId --- .../source/lr/lr_registered_location_resolver_impl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); }