From f63586c5f5aad1eb4d25e59d81a83e58529988ff Mon Sep 17 00:00:00 2001 From: Narr the Reg Date: Mon, 22 May 2023 18:31:39 -0600 Subject: service: nfc: Remove encryption key requirement --- src/core/hle/service/nfc/common/amiibo_crypto.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/core/hle/service/nfc/common/amiibo_crypto.cpp') diff --git a/src/core/hle/service/nfc/common/amiibo_crypto.cpp b/src/core/hle/service/nfc/common/amiibo_crypto.cpp index f3901ee8d..b2bcb68c3 100644 --- a/src/core/hle/service/nfc/common/amiibo_crypto.cpp +++ b/src/core/hle/service/nfc/common/amiibo_crypto.cpp @@ -52,9 +52,6 @@ bool IsAmiiboValid(const EncryptedNTAG215File& ntag_file) { if (ntag_file.compability_container != 0xEEFF10F1U) { return false; } - if (amiibo_data.constant_value != 0xA5) { - return false; - } if (amiibo_data.model_info.tag_type != NFC::PackedTagType::Type2) { return false; } -- cgit v1.2.3