Skips checksum verification when importing zipped games

Verification can take an annoyingly long time, especially for larger ROMs.
This commit is contained in:
Riley Testut 2023-06-19 19:12:14 -05:00
parent 8bd6fe1e11
commit 6909b6248f

View File

@ -545,7 +545,7 @@ extension DatabaseManager
try FileManager.default.removeItem(at: outputURL)
}
_ = try archive.extract(entry, to: outputURL)
_ = try archive.extract(entry, to: outputURL, skipCRC32: true)
outputURLs.insert(outputURL)
}