diff options
author | bunnei <bunneidev@gmail.com> | 2018-02-02 09:01:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-02 09:01:21 -0800 |
commit | 5ad9b3e19d7606193fdc3513d441f2774e434553 (patch) | |
tree | fb063e6cf76692a791a05e93a21eef8b14340ec9 /src | |
parent | 19098021560e66659aae5e0318faa09637fc8174 (diff) | |
parent | 58601abd1c086866d2dc6f37acd6a88f2a6f9d54 (diff) |
Merge pull request #154 from mailwl/vi_create_stray_array
vi::CreateStrayLayer : add padding to request
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/vi/vi.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp index e32ea1fb8..2c7737fd9 100644 --- a/src/core/hle/service/vi/vi.cpp +++ b/src/core/hle/service/vi/vi.cpp @@ -683,6 +683,7 @@ void IApplicationDisplayService::CreateStrayLayer(Kernel::HLERequestContext& ctx IPC::RequestParser rp{ctx}; u32 flags = rp.Pop<u32>(); + rp.Pop<u32>(); // padding u64 display_id = rp.Pop<u64>(); auto& buffer = ctx.BufferDescriptorB()[0]; |