From a6e405c9887d2772589006b8ab5896a9841e83a8 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 12 Sep 2019 22:44:05 -0700 Subject: [PATCH] ldr: fix hbl_html redirection invocation --- stratosphere/loader/source/ldr_content_management.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stratosphere/loader/source/ldr_content_management.cpp b/stratosphere/loader/source/ldr_content_management.cpp index fca076dae..734b60bb3 100644 --- a/stratosphere/loader/source/ldr_content_management.cpp +++ b/stratosphere/loader/source/ldr_content_management.cpp @@ -334,7 +334,7 @@ namespace sts::ldr { /* We just need to set this to any valid NCA path. Let's use the executable path. */ R_TRY(lrLrResolveProgramPath(&lr, static_cast(loc.title_id), path)); - R_TRY(lrLrRedirectApplicationHtmlDocumentPath(&lr, static_cast(loc.title_id), path)); + R_TRY(lrLrRedirectApplicationHtmlDocumentPath(&lr, static_cast(loc.title_id), static_cast(loc.title_id), path)); return ResultSuccess; }