Fix minor PRS1 regression introduced in 8fd2840.

Complete failures were incorrectly being treated as fully up to date.
This commit is contained in:
sawinglogz 2021-11-03 16:06:54 -04:00
parent 1f3f33c45a
commit 48130243ed

View File

@ -779,17 +779,24 @@ int PRS1Loader::Open(const QString & selectedPath)
// TODO: Loaders should return the set of machines during detection, so that Open() will
// open a unique device, instead of surprising the user.
int c = 0;
bool failures = false;
for (auto & machinePath : machines) {
if (m_ctx == nullptr) {
qWarning() << "PRS1Loader::Open() called without a valid m_ctx object present";
return 0;
}
int imported = OpenMachine(machinePath);
if (imported > 0) { // don't let errors < 0 suppress subsequent successes
if (imported >= 0) { // don't let errors < 0 suppress subsequent successes
c += imported;
} else {
failures = true;
}
m_ctx->FlushUnexpectedMessages();
}
if (c == 0 && failures) {
// report an error when there were failures and no successess
c = -1;
}
return c;
}