core/hle/result: Relocate IPC error code to ipc_helpers

Relocates the error code to where it's most related, similar to how all
the other error codes are. Previously we were including a non-generic
error in the main result code header.
This commit is contained in:
Lioncash 2019-03-10 18:23:39 -04:00
parent 0aa824b12f
commit d870cc5ad7
3 changed files with 4 additions and 3 deletions

View file

@ -17,7 +17,6 @@
*/
enum class ErrorDescription : u32 {
Success = 0,
RemoteProcessDead = 301,
};
/**