diff options
| author | 2018-02-08 23:20:23 -0500 | |
|---|---|---|
| committer | 2018-02-08 23:20:23 -0500 | |
| commit | 576f0cf0277de5c6f068770942ff58658c1a1cd0 (patch) | |
| tree | 5127d8dbcd6a06b679b82042ba5299c6caa5f817 /src | |
| parent | nvhost_ctrl_gpu: Implement ZCullGetInfo. (diff) | |
| download | yuzu-576f0cf0277de5c6f068770942ff58658c1a1cd0.tar.gz yuzu-576f0cf0277de5c6f068770942ff58658c1a1cd0.tar.xz yuzu-576f0cf0277de5c6f068770942ff58658c1a1cd0.zip | |
IApplicationDisplayService::CloseDisplay: Fix response params size.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/vi/vi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp index cfddd7c41..7508443a8 100644 --- a/src/core/hle/service/vi/vi.cpp +++ b/src/core/hle/service/vi/vi.cpp | |||
| @@ -657,7 +657,7 @@ void IApplicationDisplayService::CloseDisplay(Kernel::HLERequestContext& ctx) { | |||
| 657 | IPC::RequestParser rp{ctx}; | 657 | IPC::RequestParser rp{ctx}; |
| 658 | u64 display_id = rp.Pop<u64>(); | 658 | u64 display_id = rp.Pop<u64>(); |
| 659 | 659 | ||
| 660 | IPC::ResponseBuilder rb = rp.MakeBuilder(4, 0, 0); | 660 | IPC::ResponseBuilder rb = rp.MakeBuilder(2, 0, 0); |
| 661 | rb.Push(RESULT_SUCCESS); | 661 | rb.Push(RESULT_SUCCESS); |
| 662 | } | 662 | } |
| 663 | 663 | ||