summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nfc/nfc_result.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-12-06 04:17:32 +0100
committerGitHub <noreply@github.com>2022-12-06 04:17:32 +0100
commit04779b3d2a5e25a3808d754d1ea1767f0b8c0328 (patch)
treefd003772877453e89a19d6509bc675fff3a35f54 /src/core/hle/service/nfc/nfc_result.h
parentMerge pull request #9360 from Kelebek1/R-E-S-P-E-C-T (diff)
parentinput_common: Allow mifare files (diff)
downloadyuzu-04779b3d2a5e25a3808d754d1ea1767f0b8c0328.tar
yuzu-04779b3d2a5e25a3808d754d1ea1767f0b8c0328.tar.gz
yuzu-04779b3d2a5e25a3808d754d1ea1767f0b8c0328.tar.bz2
yuzu-04779b3d2a5e25a3808d754d1ea1767f0b8c0328.tar.lz
yuzu-04779b3d2a5e25a3808d754d1ea1767f0b8c0328.tar.xz
yuzu-04779b3d2a5e25a3808d754d1ea1767f0b8c0328.tar.zst
yuzu-04779b3d2a5e25a3808d754d1ea1767f0b8c0328.zip
Diffstat (limited to 'src/core/hle/service/nfc/nfc_result.h')
-rw-r--r--src/core/hle/service/nfc/nfc_result.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/hle/service/nfc/nfc_result.h b/src/core/hle/service/nfc/nfc_result.h
index 537dc15f4..146b8ba61 100644
--- a/src/core/hle/service/nfc/nfc_result.h
+++ b/src/core/hle/service/nfc/nfc_result.h
@@ -12,6 +12,12 @@ constexpr Result InvalidArgument(ErrorModule::NFC, 65);
constexpr Result WrongDeviceState(ErrorModule::NFC, 73);
constexpr Result NfcDisabled(ErrorModule::NFC, 80);
constexpr Result TagRemoved(ErrorModule::NFC, 97);
-constexpr Result CorruptedData(ErrorModule::NFC, 144);
+
+constexpr Result MifareDeviceNotFound(ErrorModule::NFCMifare, 64);
+constexpr Result MifareInvalidArgument(ErrorModule::NFCMifare, 65);
+constexpr Result MifareWrongDeviceState(ErrorModule::NFCMifare, 73);
+constexpr Result MifareNfcDisabled(ErrorModule::NFCMifare, 80);
+constexpr Result MifareTagRemoved(ErrorModule::NFCMifare, 97);
+constexpr Result MifareReadError(ErrorModule::NFCMifare, 288);
} // namespace Service::NFC