From 29399513c034b646fb6a5fd188544c7ffc7884c7 Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Tue, 1 Sep 2015 14:39:43 +0200 Subject: [PATCH] (file_path.c) Bugfix --- libretro-common/file/file_path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/file/file_path.c b/libretro-common/file/file_path.c index 1a96cb8ba8..ec5449ff82 100644 --- a/libretro-common/file/file_path.c +++ b/libretro-common/file/file_path.c @@ -147,7 +147,7 @@ bool path_is_compressed_file(const char* path) #ifdef HAVE_COMPRESSION const char* file_ext = path_get_extension(path); -#ifdef HAVE_7ZIP +#ifdef HAVE_ZLIB if (!strcmp(file_ext, "zip")) return true; #endif