mirror of
https://github.com/libretro/RetroArch
synced 2025-02-07 21:39:54 +00:00
Merge pull request #9905 from Jamiras/cheevos_invalid_reset
don't reset triggers/lboards that failed to load
This commit is contained in:
commit
7e83f4a531
@ -897,28 +897,32 @@ void rcheevos_reset_game(void)
|
||||
cheevo = rcheevos_locals.core;
|
||||
for (i = 0; i < rcheevos_locals.patchdata.core_count; i++, cheevo++)
|
||||
{
|
||||
rc_reset_trigger(cheevo->trigger);
|
||||
if (cheevo->trigger)
|
||||
rc_reset_trigger(cheevo->trigger);
|
||||
cheevo->last = 1;
|
||||
}
|
||||
|
||||
cheevo = rcheevos_locals.unofficial;
|
||||
for (i = 0; i < rcheevos_locals.patchdata.unofficial_count; i++, cheevo++)
|
||||
{
|
||||
rc_reset_trigger(cheevo->trigger);
|
||||
if (cheevo->trigger)
|
||||
rc_reset_trigger(cheevo->trigger);
|
||||
cheevo->last = 1;
|
||||
}
|
||||
|
||||
lboard = rcheevos_locals.lboards;
|
||||
for (i = 0; i < rcheevos_locals.patchdata.lboard_count; i++, lboard++)
|
||||
{
|
||||
rc_reset_lboard(lboard->lboard);
|
||||
if (lboard->lboard)
|
||||
rc_reset_lboard(lboard->lboard);
|
||||
|
||||
if (lboard->active)
|
||||
{
|
||||
lboard->active = 0;
|
||||
|
||||
/* this ensures the leaderboard won't restart until the start trigger is false for at least one frame */
|
||||
lboard->lboard->submitted = 1;
|
||||
if (lboard->lboard)
|
||||
lboard->lboard->submitted = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user