From e59fb6c0d9f439a669cba4814ae8cf75449e3841 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 20 Jun 2016 15:22:31 +0200 Subject: [PATCH] Bugfix --- tasks/task_decompress.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks/task_decompress.c b/tasks/task_decompress.c index 7166a3143b..117e8b2823 100644 --- a/tasks/task_decompress.c +++ b/tasks/task_decompress.c @@ -260,7 +260,8 @@ bool task_push_decompress( /* ZIP or APK only */ if (!path_file_exists(source_file) || - !menu_hash_to_file_type(msg_hash_calculate(path_get_extension(source_file)))) + menu_hash_to_file_type(msg_hash_calculate(path_get_extension(source_file))) + != MENU_FILE_COMPRESSED) { RARCH_WARN("[decompress] File '%s' does not exist or is not a compressed file.\n", source_file);