afegit separador de milers a la tabla de puntuacions

This commit is contained in:
2024-07-14 20:57:49 +02:00
parent 6eef3ada55
commit fef9a4f9a0
9 changed files with 85 additions and 27 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ void ManageHiScoreTable::sort()
{
struct
{
bool operator()(hiScoreEntry_t a, hiScoreEntry_t b) const { return a.score < b.score; }
bool operator()(hiScoreEntry_t a, hiScoreEntry_t b) const { return a.score > b.score; }
} customLess;
std::sort(table->begin(), table->end(), customLess);