diff options
| author | Ac_K <Acoustik666@gmail.com> | 2021-03-18 21:40:20 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-18 21:40:20 +0100 |
| commit | a56423802cd6e74809c1cf5d93b51fdf11f07bef (patch) | |
| tree | 124cd814b327ea1eb446f6c867a34491ffe16b0d /Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs | |
| parent | 2b92c10105c8c7fcae3ab39d473f640c846a24ce (diff) | |
nfp: Amiibo scanning support (#2006)
* Initial Impl.
* You just want me cause I'm next
* Fix some logics
* Fix close button
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs b/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs index b42a28a9..e0ccbc6d 100644 --- a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs +++ b/Ryujinx.HLE/HOS/Services/Nfc/Nfp/ResultCode.cs @@ -7,7 +7,12 @@ Success = 0, - DeviceNotFound = (64 << ErrorCodeShift) | ModuleId, - DevicesBufferIsNull = (65 << ErrorCodeShift) | ModuleId + DeviceNotFound = (64 << ErrorCodeShift) | ModuleId, + WrongArgument = (65 << ErrorCodeShift) | ModuleId, + WrongDeviceState = (73 << ErrorCodeShift) | ModuleId, + NfcDisabled = (80 << ErrorCodeShift) | ModuleId, + TagNotFound = (97 << ErrorCodeShift) | ModuleId, + ApplicationAreaIsNull = (128 << ErrorCodeShift) | ModuleId, + ApplicationAreaAlreadyCreated = (168 << ErrorCodeShift) | ModuleId } }
\ No newline at end of file |
