From 0c6bd73996ba5d444fb776955f9e95a00bf11285 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Thu, 22 Apr 2021 00:20:16 +0200 Subject: [PATCH] fix: After a init task failure, future tasks didn't run at all --- source/init/splash_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/init/splash_window.cpp b/source/init/splash_window.cpp index 24146ad9a..77b77e1b5 100644 --- a/source/init/splash_window.cpp +++ b/source/init/splash_window.cpp @@ -45,7 +45,7 @@ namespace hex::init { this->m_currTaskName = name; } - status = status && task(); + status = task() && status; { std::lock_guard guard(this->m_progressMutex);