diff options
author | Subv <subv2112@gmail.com> | 2016-12-05 13:59:57 -0500 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2016-12-05 13:59:57 -0500 |
commit | c93c5a72bb46796e898f54a7c13dfb8d941ddd4d (patch) | |
tree | 1e5bded69840948daaa8b27bcba05a14b38dcb75 /src/core/hle/result.h | |
parent | 61a2fe8c3bcd5e6dc7e97945b923d1a5bd8099ec (diff) |
Return an error code when connecting to a saturated port.
The error code was taken from the 3DS kernel.
Diffstat (limited to 'src/core/hle/result.h')
-rw-r--r-- | src/core/hle/result.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h index f7356f9d8..20562aed6 100644 --- a/src/core/hle/result.h +++ b/src/core/hle/result.h @@ -18,6 +18,7 @@ enum class ErrorDescription : u32 { Success = 0, WrongPermission = 46, OS_InvalidBufferDescriptor = 48, + MaxConnectionsReached = 52, WrongAddress = 53, FS_ArchiveNotMounted = 101, FS_FileNotFound = 112, |