We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19f539c commit 5e05058Copy full SHA for 5e05058
projects/lib/src/tournament.cpp
@@ -428,13 +428,20 @@ bool Tournament::fileExists(QString path) const
428
}
429
/* do something with the line */
430
} while (!line.isNull());
431
- if (gameNo && (gameNo == (m_finishedGameCount + 1)))
+ if (gameNo)
432
{
433
- return true;
+ if (gameNo == (m_finishedGameCount + 1))
434
+ {
435
+ return true;
436
+ }
437
+ else
438
439
+ return false;
440
441
442
else
443
- return false;
444
445
446
} else {
447
return false;
0 commit comments