diff options
author | LC <mathew1800@gmail.com> | 2021-01-15 22:19:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 22:19:46 +0100 |
commit | 8be9e5b48b5d8ef1c52fab16668dd479ac799f00 (patch) | |
tree | d38b189961f155c6568344ceb631aa82f35c923d /src/core/hle/ipc.h | |
parent | Merge pull request #5355 from lioncash/timer (diff) | |
parent | common/common_funcs: Rename INSERT_UNION_PADDING_{BYTES,WORDS} to _NOINIT (diff) | |
download | yuzu-8be9e5b48b5d8ef1c52fab16668dd479ac799f00.tar yuzu-8be9e5b48b5d8ef1c52fab16668dd479ac799f00.tar.gz yuzu-8be9e5b48b5d8ef1c52fab16668dd479ac799f00.tar.bz2 yuzu-8be9e5b48b5d8ef1c52fab16668dd479ac799f00.tar.lz yuzu-8be9e5b48b5d8ef1c52fab16668dd479ac799f00.tar.xz yuzu-8be9e5b48b5d8ef1c52fab16668dd479ac799f00.tar.zst yuzu-8be9e5b48b5d8ef1c52fab16668dd479ac799f00.zip |
Diffstat (limited to 'src/core/hle/ipc.h')
-rw-r--r-- | src/core/hle/ipc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/ipc.h b/src/core/hle/ipc.h index 7ce313190..79bcf5762 100644 --- a/src/core/hle/ipc.h +++ b/src/core/hle/ipc.h @@ -160,7 +160,7 @@ struct DomainMessageHeader { // Used when responding to an IPC request, Server -> Client. struct { u32_le num_objects; - INSERT_UNION_PADDING_WORDS(3); + INSERT_PADDING_WORDS_NOINIT(3); }; // Used when performing an IPC request, Client -> Server. @@ -171,7 +171,7 @@ struct DomainMessageHeader { BitField<16, 16, u32> size; }; u32_le object_id; - INSERT_UNION_PADDING_WORDS(2); + INSERT_PADDING_WORDS_NOINIT(2); }; std::array<u32, 4> raw{}; |