From 9c131dfaad44b702a043b9adb41698f302bbead9 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 23 Jan 2016 23:00:35 +0100 Subject: [PATCH] Cleanup --- libretro-common/file/file_extract.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libretro-common/file/file_extract.c b/libretro-common/file/file_extract.c index 95548b80fd..47529b8f02 100644 --- a/libretro-common/file/file_extract.c +++ b/libretro-common/file/file_extract.c @@ -788,12 +788,12 @@ bool zlib_perform_mode(const char *path, const char *valid_exts, { switch (cmode) { - case 0: /* Uncompressed */ + case ZLIB_MODE_UNCOMPRESSED: if (!retro_write_file(path, cdata, size)) return false; break; - case 8: /* Deflate */ + case ZLIB_MODE_DEFLATE: { int ret = 0; zlib_file_handle_t handle = {0};