Formula 1 scoring changed last season. To reflect this I
suggest the following change
in report.cpp:
// F1 style scoring:
//const int points[] = {10, 6, 4, 3, 2, 1 };
const int points[] = {10, 8, 6, 5, 4, 3, 2, 1 };
//if(i < 6) // Points:
if(i < 8) // Points:
{
m_aPoints[k] += points[i];
}
/Ole