Trophy display bug fix.
This commit is contained in:
parent
c0bcfca334
commit
cf5939dd3c
|
@ -67,13 +67,13 @@ void initTrophies(void)
|
||||||
savedScreenshot = 0;
|
savedScreenshot = 0;
|
||||||
|
|
||||||
page = 0;
|
page = 0;
|
||||||
|
|
||||||
maxPages = STAT_TIME_PLAYED;
|
|
||||||
maxPages /= TROPHIES_PER_PAGE;
|
|
||||||
maxPages = ceil(maxPages);
|
|
||||||
|
|
||||||
loadTrophyData();
|
loadTrophyData();
|
||||||
|
|
||||||
|
maxPages = numTrophies;
|
||||||
|
maxPages /= TROPHIES_PER_PAGE;
|
||||||
|
maxPages = ceil(maxPages);
|
||||||
|
|
||||||
resetAlert();
|
resetAlert();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -389,6 +389,8 @@ static void loadTrophyData(void)
|
||||||
t->stat = lookup(cJSON_GetObjectItem(node, "stat")->valuestring);
|
t->stat = lookup(cJSON_GetObjectItem(node, "stat")->valuestring);
|
||||||
t->statValue = cJSON_GetObjectItem(node, "statValue")->valueint;
|
t->statValue = cJSON_GetObjectItem(node, "statValue")->valueint;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
numTrophies++;
|
||||||
}
|
}
|
||||||
|
|
||||||
cJSON_Delete(root);
|
cJSON_Delete(root);
|
||||||
|
|
Loading…
Reference in New Issue