mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-22 02:38:11 +00:00
Fixed some cheevos with required hits not registering
This commit is contained in:
parent
d6dbe9a6ad
commit
c7849de707
@ -2204,7 +2204,15 @@ static void cheevos_test_cheevo_set(const cheevoset_t *set)
|
||||
{
|
||||
valid = cheevos_test_cheevo(cheevo);
|
||||
|
||||
if (valid && !cheevo->last)
|
||||
if (cheevo->last)
|
||||
{
|
||||
cheevos_condset_t* condset = cheevo->condition.condsets;
|
||||
const cheevos_condset_t* end = cheevo->condition.condsets + cheevo->condition.count;
|
||||
|
||||
for (; condset < end; condset++)
|
||||
cheevos_reset_cond_set(condset, 0);
|
||||
}
|
||||
else if (valid)
|
||||
{
|
||||
char url[256];
|
||||
url[0] = '\0';
|
||||
|
Loading…
Reference in New Issue
Block a user