From 7ee7d4f404775c4e87f53e4cb98620705c745b58 Mon Sep 17 00:00:00 2001 From: Maschell Date: Wed, 14 Sep 2022 02:31:12 +0200 Subject: [PATCH] Display the the correct name in home menu --- src/RPXLoading.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/RPXLoading.cpp b/src/RPXLoading.cpp index 46c2347..67cc696 100644 --- a/src/RPXLoading.cpp +++ b/src/RPXLoading.cpp @@ -35,8 +35,8 @@ DECL_FUNCTION(int32_t, HBM_NN_ACP_ACPGetTitleMetaXmlByDevice, uint32_t titleid_u memset(&metaxml->longname_ja, 0, 0x338C - 0x38C); // clear all names snprintf(metaxml->longname_en, sizeof(metaxml->longname_en), "%s", gReplacementInfo.rpxReplacementInfo.metaInformation.longname); - snprintf(metaxml->shortname_en, sizeof(metaxml->shortname_en), "%s", gReplacementInfo.rpxReplacementInfo.metaInformation.longname); - snprintf(metaxml->publisher_en, sizeof(metaxml->publisher_en), "%s", gReplacementInfo.rpxReplacementInfo.metaInformation.longname); + 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; @@ -397,4 +397,4 @@ WUMS_EXPORT_FUNCTION(RL_LaunchHomebrew); WUMS_EXPORT_FUNCTION(RL_GetVersion); WUMS_EXPORT_FUNCTION(RL_EnableContentRedirection); WUMS_EXPORT_FUNCTION(RL_DisableContentRedirection); -WUMS_EXPORT_FUNCTION(RL_UnmountCurrentRunningBundle); \ No newline at end of file +WUMS_EXPORT_FUNCTION(RL_UnmountCurrentRunningBundle);