Trophy display bug fix.

This commit is contained in:
Steve 2018-03-18 07:40:39 +00:00
parent c0bcfca334
commit cf5939dd3c
1 changed files with 6 additions and 4 deletions

View File

@ -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);