diff --git a/src/game/trophies.c b/src/game/trophies.c index cf0822e..0543ac8 100644 --- a/src/game/trophies.c +++ b/src/game/trophies.c @@ -67,13 +67,13 @@ void initTrophies(void) savedScreenshot = 0; page = 0; - - maxPages = STAT_TIME_PLAYED; - maxPages /= TROPHIES_PER_PAGE; - maxPages = ceil(maxPages); loadTrophyData(); + maxPages = numTrophies; + maxPages /= TROPHIES_PER_PAGE; + maxPages = ceil(maxPages); + resetAlert(); } @@ -389,6 +389,8 @@ static void loadTrophyData(void) t->stat = lookup(cJSON_GetObjectItem(node, "stat")->valuestring); t->statValue = cJSON_GetObjectItem(node, "statValue")->valueint; } + + numTrophies++; } cJSON_Delete(root);