mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix minor PRS1 regression introduced in 8fd2840
.
Complete failures were incorrectly being treated as fully up to date.
This commit is contained in:
parent
1f3f33c45a
commit
48130243ed
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user