mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00: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();
|
||||
|
||||
// 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…
Add table
Reference in a new issue