diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2020-04-28 16:49:49 +0200 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2020-04-28 16:49:49 +0200 |
commit | 0f6064e5c97a40294c1682220ec5c773941827bf (patch) | |
tree | cea58e05525fea254a92068b76e54d5a68f1cc8b /src/core/hle/service/glue | |
parent | Merge pull request #3785 from ogniK5377/set-buffer-count-unit (diff) | |
download | yuzu-0f6064e5c97a40294c1682220ec5c773941827bf.tar yuzu-0f6064e5c97a40294c1682220ec5c773941827bf.tar.gz yuzu-0f6064e5c97a40294c1682220ec5c773941827bf.tar.bz2 yuzu-0f6064e5c97a40294c1682220ec5c773941827bf.tar.lz yuzu-0f6064e5c97a40294c1682220ec5c773941827bf.tar.xz yuzu-0f6064e5c97a40294c1682220ec5c773941827bf.tar.zst yuzu-0f6064e5c97a40294c1682220ec5c773941827bf.zip |
Diffstat (limited to 'src/core/hle/service/glue')
-rw-r--r-- | src/core/hle/service/glue/errors.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/glue/errors.h b/src/core/hle/service/glue/errors.h index c2874c585..f6647f724 100644 --- a/src/core/hle/service/glue/errors.h +++ b/src/core/hle/service/glue/errors.h @@ -8,9 +8,9 @@ namespace Service::Glue { -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}; +constexpr ResultCode ERR_INVALID_RESOURCE{ErrorModule::ARP, 30}; +constexpr ResultCode ERR_INVALID_PROCESS_ID{ErrorModule::ARP, 31}; +constexpr ResultCode ERR_INVALID_ACCESS{ErrorModule::ARP, 42}; +constexpr ResultCode ERR_NOT_REGISTERED{ErrorModule::ARP, 102}; } // namespace Service::Glue |