mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-01 03:32:07 +00:00
Fix package installation exit condition after error occured
This commit is contained in:
parent
2372116acc
commit
bcb1c6c080
@ -962,7 +962,7 @@ void main_window::HandlePackageInstallation(QStringList file_paths)
|
||||
pdlg.show();
|
||||
|
||||
// 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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user