summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nfp/nfp_result.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-10-05 23:13:57 +0200
committerGitHub <noreply@github.com>2022-10-05 23:13:57 +0200
commit1689530f520f72ca198de421519fd2d6658af2d1 (patch)
tree3daa0c297084278fdb67b8f3d1f61ca62794b870 /src/core/hle/service/nfp/nfp_result.h
parentShow error from cpp-httplib when we don't have a response to read (report errors while connecting to API) (#8999) (diff)
parentservice: nfp: Fix errors to pass unit testing (diff)
downloadyuzu-1689530f520f72ca198de421519fd2d6658af2d1.tar
yuzu-1689530f520f72ca198de421519fd2d6658af2d1.tar.gz
yuzu-1689530f520f72ca198de421519fd2d6658af2d1.tar.bz2
yuzu-1689530f520f72ca198de421519fd2d6658af2d1.tar.lz
yuzu-1689530f520f72ca198de421519fd2d6658af2d1.tar.xz
yuzu-1689530f520f72ca198de421519fd2d6658af2d1.tar.zst
yuzu-1689530f520f72ca198de421519fd2d6658af2d1.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nfp/nfp_result.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/nfp/nfp_result.h b/src/core/hle/service/nfp/nfp_result.h
index ac259e2ff..d8e4cf094 100644
--- a/src/core/hle/service/nfp/nfp_result.h
+++ b/src/core/hle/service/nfp/nfp_result.h
@@ -8,6 +8,8 @@
namespace Service::NFP {
constexpr Result DeviceNotFound(ErrorModule::NFP, 64);
+constexpr Result InvalidArgument(ErrorModule::NFP, 65);
+constexpr Result WrongApplicationAreaSize(ErrorModule::NFP, 68);
constexpr Result WrongDeviceState(ErrorModule::NFP, 73);
constexpr Result NfcDisabled(ErrorModule::NFP, 80);
constexpr Result WriteAmiiboFailed(ErrorModule::NFP, 88);