early-access version 2989

main
pineappleEA 2022-10-03 01:37:30 +02:00
parent 7af207c290
commit 9d3991e73e
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access
=============
This is the source code for early-access 2988.
This is the source code for early-access 2989.
## Legal Notice

View File

@ -58,7 +58,7 @@ bool IsAmiiboValid(const EncryptedNTAG215File& ntag_file) {
if (amiibo_data.model_info.constant_value != 0x02) {
return false;
}
if (ntag_file.dynamic_lock != 0xBD0F0001U) {
if ((ntag_file.dynamic_lock & 0xFFFFFF) != 0x0F0001U) {
return false;
}
if (ntag_file.CFG0 != 0x04000000U) {