Add message of not exist Best Results

This commit is contained in:
2023-09-20 13:50:34 +02:00
parent fc81730dfc
commit 8257a6ae39
5 changed files with 17 additions and 2 deletions

View File

@@ -104,6 +104,9 @@ namespace platform {
oss << score << " compared to " << BestResult::title() << " .: " << totalScore / BestResult::score();
cout << headerLine(oss.str());
}
if (!getExistBestFile() && compare) {
cout << headerLine("*** Best Results File not found. Couldn't compare any result!");
}
cout << string(MAXL, '*') << endl << Colors::RESET();
}
}