diff options
| author | Zach Hilman <zachhilman@gmail.com> | 2019-06-25 22:25:10 -0400 |
|---|---|---|
| committer | Zach Hilman <zachhilman@gmail.com> | 2019-06-25 22:25:10 -0400 |
| commit | d10fc2d7277cf075f875fe2831501cb79c50e21a (patch) | |
| tree | a1ef0e65dfd79f8badde8dcd24014432428c51f8 /src/core/hle/service/glue/errors.h | |
| parent | d40a38df8d5833397da942a338728da6d07eae84 (diff) | |
glue: Correct missing bytes in ApplicationLaunchParameter
Diffstat (limited to 'src/core/hle/service/glue/errors.h')
| -rw-r--r-- | src/core/hle/service/glue/errors.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/core/hle/service/glue/errors.h b/src/core/hle/service/glue/errors.h index 594e20a01..c2874c585 100644 --- a/src/core/hle/service/glue/errors.h +++ b/src/core/hle/service/glue/errors.h @@ -8,10 +8,9 @@ namespace Service::Glue { -constexpr ResultCode ERR_OUTPUT_TOO_SMALL{0x3C9D}; -constexpr ResultCode ERR_PROCESS_ID_ZERO{0x3E9D}; -constexpr ResultCode ERR_TITLE_ID_ZERO{0x3E9D}; -constexpr ResultCode ERR_ALREADY_ISSUED{0x549D}; -constexpr ResultCode ERR_NONEXISTENT{0xCC9D}; +constexpr ResultCode ERR_INVALID_RESOURCE{ErrorModule::ARP, 0x1E}; +constexpr ResultCode ERR_INVALID_PROCESS_ID{ErrorModule::ARP, 0x1F}; +constexpr ResultCode ERR_INVALID_ACCESS{ErrorModule::ARP, 0x2A}; +constexpr ResultCode ERR_NOT_REGISTERED{ErrorModule::ARP, 0x66}; } // namespace Service::Glue |
