Limitat el nom a tres caracters

This commit is contained in:
2025-05-27 07:44:50 +02:00
parent a3cd1b9887
commit 9bc07b2bcb
6 changed files with 28 additions and 28 deletions
+9 -9
View File
@@ -14,15 +14,15 @@ void ManageHiScoreTable::clear()
// Añade 10 entradas predefinidas
table_.push_back(HiScoreEntry("BRY", 1000000));
table_.push_back(HiScoreEntry("USUFON", 500000));
table_.push_back(HiScoreEntry("GLUCAS", 100000));
table_.push_back(HiScoreEntry("PDLGAT", 50000));
table_.push_back(HiScoreEntry("PARRAB", 10000));
table_.push_back(HiScoreEntry("PELECH", 5000));
table_.push_back(HiScoreEntry("SAHUQU", 1000));
table_.push_back(HiScoreEntry("BACTER", 500));
table_.push_back(HiScoreEntry("PEPE", 200));
table_.push_back(HiScoreEntry("ROSITA", 100));
table_.push_back(HiScoreEntry("USU", 500000));
table_.push_back(HiScoreEntry("FON", 100000));
table_.push_back(HiScoreEntry("DOG", 50000));
table_.push_back(HiScoreEntry("LUC", 10000));
table_.push_back(HiScoreEntry("ASP", 5000));
table_.push_back(HiScoreEntry("ARR", 1000));
table_.push_back(HiScoreEntry("ABA", 500));
table_.push_back(HiScoreEntry("LER", 200));
table_.push_back(HiScoreEntry("AXX", 100));
sort();
}