diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-12-25 19:57:16 +0100 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2022-12-25 23:19:10 +0100 |
commit | 32d01a39b010e3aabca8551767909fd388febf99 (patch) | |
tree | e68530aae534683b65f1de74f9ef58f1f1cebfb0 /src/core/hle/service/vi | |
parent | service: Use ReadBufferSpan where it is trivial to do so (diff) | |
download | yuzu-32d01a39b010e3aabca8551767909fd388febf99.tar yuzu-32d01a39b010e3aabca8551767909fd388febf99.tar.gz yuzu-32d01a39b010e3aabca8551767909fd388febf99.tar.bz2 yuzu-32d01a39b010e3aabca8551767909fd388febf99.tar.lz yuzu-32d01a39b010e3aabca8551767909fd388febf99.tar.xz yuzu-32d01a39b010e3aabca8551767909fd388febf99.tar.zst yuzu-32d01a39b010e3aabca8551767909fd388febf99.zip |
Diffstat (limited to 'src/core/hle/service/vi')
-rw-r--r-- | src/core/hle/service/vi/vi.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp index bb283e74e..2fb631183 100644 --- a/src/core/hle/service/vi/vi.cpp +++ b/src/core/hle/service/vi/vi.cpp @@ -603,7 +603,7 @@ private: return; } - const auto parcel = android::Parcel{NativeWindow{*buffer_queue_id}}; + const auto parcel = android::OutputParcel{NativeWindow{*buffer_queue_id}}; const auto buffer_size = ctx.WriteBuffer(parcel.Serialize()); IPC::ResponseBuilder rb{ctx, 4}; @@ -649,7 +649,7 @@ private: return; } - const auto parcel = android::Parcel{NativeWindow{*buffer_queue_id}}; + const auto parcel = android::OutputParcel{NativeWindow{*buffer_queue_id}}; const auto buffer_size = ctx.WriteBuffer(parcel.Serialize()); IPC::ResponseBuilder rb{ctx, 6}; |