From 0ff1402fcd5e73a8b09d83e3ad57a8afeb05e062 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 11 Jul 2021 20:58:44 +1000 Subject: [PATCH] dep/libchdr: Disable verification/subcode decompression Small speed boost on low end devices. --- dep/libchdr/include/libchdr/chdconfig.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dep/libchdr/include/libchdr/chdconfig.h b/dep/libchdr/include/libchdr/chdconfig.h index 752038b48..2a1ea4bbd 100644 --- a/dep/libchdr/include/libchdr/chdconfig.h +++ b/dep/libchdr/include/libchdr/chdconfig.h @@ -3,8 +3,8 @@ /* Configure CHDR features here */ #define WANT_RAW_DATA_SECTOR 1 -#define WANT_SUBCODE 1 -#define NEED_CACHE_HUNK 1 -#define VERIFY_BLOCK_CRC 1 +#define WANT_SUBCODE 0 +#define NEED_CACHE_HUNK 0 +#define VERIFY_BLOCK_CRC 0 #endif