early-access version 2989
This commit is contained in:
parent
7af207c290
commit
9d3991e73e
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue