From 846cde52e0ae9deb0dfdccf66fb80d082fc553cb Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Mon, 28 Jun 2021 22:43:56 -0700 Subject: [PATCH] fs.mitm: ns registers program index map info, not am --- stratosphere/ams_mitm/source/fs_mitm/fs_mitm_service.hpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/stratosphere/ams_mitm/source/fs_mitm/fs_mitm_service.hpp b/stratosphere/ams_mitm/source/fs_mitm/fs_mitm_service.hpp index 1320b6c29..44549d06a 100644 --- a/stratosphere/ams_mitm/source/fs_mitm/fs_mitm_service.hpp +++ b/stratosphere/ams_mitm/source/fs_mitm/fs_mitm_service.hpp @@ -43,7 +43,7 @@ namespace ams::mitm::fs { return true; } - /* We want to mitm ns, to intercept SD card requests. */ + /* We want to mitm ns, to intercept SD card requests and program index map info registration. */ if (program_id == ncm::SystemProgramId::Ns) { return true; } @@ -58,11 +58,6 @@ namespace ams::mitm::fs { return true; } - /* We want to mitm am, to intercept program info map registration. */ - if (program_id == ncm::SystemProgramId::Am) { - return true; - } - return false; }