mirror of
https://github.com/libretro/RetroArch
synced 2025-04-16 08:43:10 +00:00
Fix some achievements for NES.
This commit is contained in:
parent
d342852415
commit
e92aa45815
@ -930,7 +930,11 @@ void cheevos_parse_guest_addr(cheevos_var_t *var, unsigned value)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
var->value -= cheevos_locals.meminfo[i].size;
|
/* HACK subtract the correct ammount of bytes to reach the save RAM */
|
||||||
|
if (i == 0 && cheevos_locals.console_id == CHEEVOS_CONSOLE_NINTENDO)
|
||||||
|
var->value -= 0x6000;
|
||||||
|
else
|
||||||
|
var->value -= cheevos_locals.meminfo[i].size;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user