mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 06:21:26 +12:00
Fix package installation exit condition after error occured
This commit is contained in:
parent
2372116acc
commit
bcb1c6c080
1 changed files with 1 additions and 1 deletions
|
@ -962,7 +962,7 @@ void main_window::HandlePackageInstallation(QStringList file_paths)
|
||||||
pdlg.show();
|
pdlg.show();
|
||||||
|
|
||||||
// Wait for the completion
|
// Wait for the completion
|
||||||
for (usz i = 0, set_text = umax; i < readers.size();)
|
for (usz i = 0, set_text = umax; i < readers.size() && error == package_error::no_error;)
|
||||||
{
|
{
|
||||||
std::this_thread::sleep_for(5ms);
|
std::this_thread::sleep_for(5ms);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue