From ee7787dd52a9444f21d6feb69893e4ae369cce4e Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 15 Dec 2016 21:21:39 +0100 Subject: [PATCH] (task_decompress.c) Don't log this --- tasks/task_decompress.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tasks/task_decompress.c b/tasks/task_decompress.c index 43691626e0..9250fa4011 100644 --- a/tasks/task_decompress.c +++ b/tasks/task_decompress.c @@ -68,7 +68,9 @@ static int file_decompressed_subdir(const char *name, cdata, cmode, csize, size, crc32, userdata)) goto error; +#if 0 RARCH_LOG("[deflate subdir] Path: %s, CRC32: 0x%x\n", name, crc32); +#endif next_file: return 1; @@ -107,7 +109,9 @@ static int file_decompressed(const char *name, const char *valid_exts, cdata, cmode, csize, size, crc32, userdata)) goto error; +#if 0 RARCH_LOG("[deflate] Path: %s, CRC32: 0x%x\n", name, crc32); +#endif next_file: return 1;