From 7f0f9037be06db17016813dc4ff52962d73937c4 Mon Sep 17 00:00:00 2001 From: Tom Mason Date: Mon, 19 Aug 2013 22:57:21 +0100 Subject: [PATCH] fix for older versions of unshield --- apps/launcher/unshieldthread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/launcher/unshieldthread.cpp b/apps/launcher/unshieldthread.cpp index 5a9475d96..ab9d984e1 100644 --- a/apps/launcher/unshieldthread.cpp +++ b/apps/launcher/unshieldthread.cpp @@ -325,7 +325,7 @@ bool UnshieldThread::extract_file(Unshield* unshield, bfs::path output_dir, cons void UnshieldThread::extract_cab(const bfs::path& cab, const bfs::path& output_dir, bool extract_ini) { Unshield * unshield; - unshield = unshield_open_force_version(cab.c_str(), -1); + unshield = unshield_open(cab.c_str()); int i; for (i = 0; i < unshield_file_group_count(unshield); i++)