custominstall: block DSiWare from installing

This commit is contained in:
Ian Burgwin
2021-02-08 21:23:57 -08:00
parent 6623ffb439
commit 1b2b0d06db

View File

@@ -236,6 +236,9 @@ class CustomInstall:
# the file would be tried in CDNReader next (assuming it's a tmd) # the file would be tried in CDNReader next (assuming it's a tmd)
# any other error should be propagated to the caller # any other error should be propagated to the caller
reader = CDNReader(path) 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) readers.append(reader)
self.readers = readers self.readers = readers