From 4bcf1a1b7217900235747bf2840a7b90248a3f6b Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 25 Aug 2022 21:57:36 +0200 Subject: [PATCH] Stop redirecting the Daily Log to "wiiu/apps/homebrew_launcher/homebrew_launcher.rpx" if the file is on the sd card --- source/ios_mcp/source/mcp_loadfile.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/source/ios_mcp/source/mcp_loadfile.c b/source/ios_mcp/source/mcp_loadfile.c index 2d72d43..30562ee 100644 --- a/source/ios_mcp/source/mcp_loadfile.c +++ b/source/ios_mcp/source/mcp_loadfile.c @@ -91,16 +91,6 @@ int _MCP_LoadFile_patch(ipcmessage *msg) { replace_target = LOAD_RPX_TARGET_SD_CARD; replace_filesize = 0; // unknown replace_fileoffset = 0; - } else if (strncmp(request->name, "safe.rpx", strlen("safe.rpx")) == 0 || strncmp(request->name, "ply.rpx", strlen("ply.rpx")) == 0) { - // if we don't explicitly replace files, we do want replace the Health and Safety app with the HBL - if (request->pos == 0 && !doWantReplaceRPX) { - replace_path = "wiiu/apps/homebrew_launcher/homebrew_launcher.rpx"; - replace_target = LOAD_RPX_TARGET_SD_CARD; - //doWantReplaceXML = false; - doWantReplaceRPX = true; - replace_filesize = 0; // unknown - replace_fileoffset = 0; - } } else if (!doWantReplaceRPX) { doWantReplaceRPX = false; // Only replace it once. replace_path = NULL;