diff options
author | Lioncash <mathew1800@gmail.com> | 2019-03-07 22:44:28 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-03-08 05:34:37 +0100 |
commit | fbb82e61e35a4e40154ad9a9fcb1ecc46f6622b8 (patch) | |
tree | efe360f1934201e7950a61e710b388f799dd8ad7 /src/core/hle/ipc_helpers.h | |
parent | travis: Bump macOS version to 10.14 (diff) | |
download | yuzu-fbb82e61e35a4e40154ad9a9fcb1ecc46f6622b8.tar yuzu-fbb82e61e35a4e40154ad9a9fcb1ecc46f6622b8.tar.gz yuzu-fbb82e61e35a4e40154ad9a9fcb1ecc46f6622b8.tar.bz2 yuzu-fbb82e61e35a4e40154ad9a9fcb1ecc46f6622b8.tar.lz yuzu-fbb82e61e35a4e40154ad9a9fcb1ecc46f6622b8.tar.xz yuzu-fbb82e61e35a4e40154ad9a9fcb1ecc46f6622b8.tar.zst yuzu-fbb82e61e35a4e40154ad9a9fcb1ecc46f6622b8.zip |
Diffstat (limited to 'src/core/hle/ipc_helpers.h')
-rw-r--r-- | src/core/hle/ipc_helpers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h index 90f276ee8..079283830 100644 --- a/src/core/hle/ipc_helpers.h +++ b/src/core/hle/ipc_helpers.h @@ -350,7 +350,7 @@ public: template <class T> std::shared_ptr<T> PopIpcInterface() { ASSERT(context->Session()->IsDomain()); - ASSERT(context->GetDomainMessageHeader()->input_object_count > 0); + ASSERT(context->GetDomainMessageHeader().input_object_count > 0); return context->GetDomainRequestHandler<T>(Pop<u32>() - 1); } }; |