From 6909b6248fcfdbc5886d6202b0ff11d8335a6235 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Mon, 19 Jun 2023 19:12:14 -0500 Subject: [PATCH] Skips checksum verification when importing zipped games Verification can take an annoyingly long time, especially for larger ROMs. --- Delta/Database/DatabaseManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Delta/Database/DatabaseManager.swift b/Delta/Database/DatabaseManager.swift index dfd06e3..faa38d2 100644 --- a/Delta/Database/DatabaseManager.swift +++ b/Delta/Database/DatabaseManager.swift @@ -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) }