From 7dfe9415c4e62c8be3bdf70a6912a131f45d2a09 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sat, 14 Nov 2015 14:04:02 +0300 Subject: [PATCH] PKG Installer fix --- rpcs3/Gui/MainFrame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Gui/MainFrame.cpp b/rpcs3/Gui/MainFrame.cpp index ccce07da48..12191c17bf 100644 --- a/rpcs3/Gui/MainFrame.cpp +++ b/rpcs3/Gui/MainFrame.cpp @@ -289,7 +289,7 @@ void MainFrame::InstallPkg(wxCommandEvent& WXUNUSED(event)) volatile f64 progress = 0.0; // Run PKG unpacking asynchronously - auto result = std::async(WRAP_EXPR(pkg_install(pkg_f, local_path + "/", progress))); + auto result = std::async(std::launch::async, WRAP_EXPR(pkg_install(pkg_f, local_path + "/", progress))); // Wait for the completion while (result.wait_for(15ms) != std::future_status::ready)