summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nfc/nfc_types.h
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-06-15 02:16:23 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2023-06-15 02:16:23 +0200
commit61b45885176e8045f8df19085e1588c8f0da60b0 (patch)
tree2848fef0cb6569d93d491cfc403b3c2c487636d1 /src/core/hle/service/nfc/nfc_types.h
parentservice: nfc: Accuracy fixes (diff)
downloadyuzu-61b45885176e8045f8df19085e1588c8f0da60b0.tar
yuzu-61b45885176e8045f8df19085e1588c8f0da60b0.tar.gz
yuzu-61b45885176e8045f8df19085e1588c8f0da60b0.tar.bz2
yuzu-61b45885176e8045f8df19085e1588c8f0da60b0.tar.lz
yuzu-61b45885176e8045f8df19085e1588c8f0da60b0.tar.xz
yuzu-61b45885176e8045f8df19085e1588c8f0da60b0.tar.zst
yuzu-61b45885176e8045f8df19085e1588c8f0da60b0.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nfc/nfc_types.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hle/service/nfc/nfc_types.h b/src/core/hle/service/nfc/nfc_types.h
index 1a0866e78..68e724442 100644
--- a/src/core/hle/service/nfc/nfc_types.h
+++ b/src/core/hle/service/nfc/nfc_types.h
@@ -59,14 +59,11 @@ enum class PackedTagType : u8 {
};
// This is nn::nfc::NfcProtocol
-// Verify this enum. It might be completely wrong default protocol is 0x48
enum class NfcProtocol : u32 {
None,
TypeA = 1U << 0, // ISO14443A
TypeB = 1U << 1, // ISO14443B
TypeF = 1U << 2, // Sony FeliCa
- Unknown1 = 1U << 3,
- Unknown2 = 1U << 5,
All = 0xFFFFFFFFU,
};