Fully clean trophy bug fix.
This commit is contained in:
parent
b31d061d42
commit
20d1548f42
|
@ -747,6 +747,12 @@ static void awardMissionTrophies(void)
|
||||||
{
|
{
|
||||||
awardTrophy("CLEAN");
|
awardTrophy("CLEAN");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ignore Teeka's */
|
||||||
|
if (numMissions - completedMissions == 1)
|
||||||
|
{
|
||||||
|
awardTrophy("FULLY_CLEAN");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int missionComparator(const void *a, const void *b)
|
static int missionComparator(const void *a, const void *b)
|
||||||
|
|
|
@ -45,11 +45,6 @@ void initPostMission(void)
|
||||||
{
|
{
|
||||||
app.restrictTrophyAlert = 0;
|
app.restrictTrophyAlert = 0;
|
||||||
|
|
||||||
if (status == MS_COMPLETE)
|
|
||||||
{
|
|
||||||
awardTrophy("FULLY_CLEAN");
|
|
||||||
}
|
|
||||||
|
|
||||||
canContinue = 0;
|
canContinue = 0;
|
||||||
|
|
||||||
oNum = 0;
|
oNum = 0;
|
||||||
|
|
Loading…
Reference in New Issue