mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 01:02:35 +02:00
Fix calls to setFailed in win32 launcher
This commit is contained in:
parent
da1b2e9ec8
commit
328896b9ed
1 changed files with 2 additions and 2 deletions
|
@ -745,7 +745,7 @@ BOOL LauncherManager::installContent() {
|
|||
}
|
||||
else {
|
||||
addToLog(_T("Error decompressing content zip file."));
|
||||
setFailed(_hasFailed);
|
||||
setFailed(true);
|
||||
}
|
||||
};
|
||||
std::function<void(float)> onProgress = [&](float progress) {
|
||||
|
@ -785,7 +785,7 @@ BOOL LauncherManager::downloadFile(ProcessType type, const CString& url, CString
|
|||
} else {
|
||||
addToLog(_T("Error downloading application."));
|
||||
}
|
||||
setFailed(_hasFailed);
|
||||
setFailed(true);
|
||||
}
|
||||
};
|
||||
std::function<void(float)> onProgress = [&, type](float progress) {
|
||||
|
|
Loading…
Reference in a new issue