mirror of https://github.com/WerWolv/ImHex.git
fix: After a init task failure, future tasks didn't run at all
This commit is contained in:
parent
d91abb5eba
commit
0c6bd73996
|
@ -45,7 +45,7 @@ namespace hex::init {
|
|||
this->m_currTaskName = name;
|
||||
}
|
||||
|
||||
status = status && task();
|
||||
status = task() && status;
|
||||
|
||||
{
|
||||
std::lock_guard guard(this->m_progressMutex);
|
||||
|
|
Loading…
Reference in New Issue