From fc8bef61a70b087d80952c7ac1c87ccdff414685 Mon Sep 17 00:00:00 2001 From: NinjaCheetah <58050615+NinjaCheetah@users.noreply.github.com> Date: Fri, 2 Aug 2024 07:58:10 -0400 Subject: [PATCH] Don't always disable shared content in iospatch module --- modules/title/iospatcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/title/iospatcher.py b/modules/title/iospatcher.py index 5f99417..52d2788 100644 --- a/modules/title/iospatcher.py +++ b/modules/title/iospatcher.py @@ -106,7 +106,7 @@ def handle_iospatch(args): if patch_count > 0 or args.version is not None or args.slot is not None: # Set patched content to non-shared if that argument was passed. - if args.no_shared is not None: + if args.no_shared: ios_patcher.title.content.content_records[ios_patcher.es_module_index].content_type = 1 if ios_patcher.dip_module_index != -1: ios_patcher.title.content.content_records[ios_patcher.dip_module_index].content_type = 1