From 1b2b0d06dbecc6a6d22275fe5e896b7f89abb1ca Mon Sep 17 00:00:00 2001 From: Ian Burgwin Date: Mon, 8 Feb 2021 21:23:57 -0800 Subject: [PATCH] custominstall: block DSiWare from installing --- custominstall.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/custominstall.py b/custominstall.py index 1ef7da4..eea6260 100644 --- a/custominstall.py +++ b/custominstall.py @@ -236,6 +236,9 @@ class CustomInstall: # the file would be tried in CDNReader next (assuming it's a tmd) # any other error should be propagated to the caller reader = CDNReader(path) + if reader.tmd.title_id.startswith('00048'): # DSiWare + self.log(f'Skipping {reader.tmd.title_id} - DSiWare is not supported') + continue readers.append(reader) self.readers = readers