From 4e8c32aaf4bab701f48d371c6aef93fd33f2ca3a Mon Sep 17 00:00:00 2001 From: Andrew Hawes <117602754+Andrew1Hawes@users.noreply.github.com> Date: Wed, 19 Apr 2023 17:56:27 +0100 Subject: [PATCH] Always avoid "close app" confirmation when launching homebrew --- src/RPXLoading.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/RPXLoading.cpp b/src/RPXLoading.cpp index 49e5291..2ab737b 100644 --- a/src/RPXLoading.cpp +++ b/src/RPXLoading.cpp @@ -38,8 +38,9 @@ DECL_FUNCTION(int32_t, HBM_NN_ACP_ACPGetTitleMetaXmlByDevice, uint32_t titleid_u snprintf(metaxml->shortname_en, sizeof(metaxml->shortname_en), "%s", gReplacementInfo.rpxReplacementInfo.metaInformation.shortname); snprintf(metaxml->publisher_en, sizeof(metaxml->publisher_en), "%s", gReplacementInfo.rpxReplacementInfo.metaInformation.author); - // Disbale the emanual - metaxml->e_manual = 0; + // Disable the emanual + metaxml->e_manual = 0; + metaxml->closing_msg = 0; return 0; }