Browse Source
Merge pull request #325 from Hexagon12/ipc-value-fix
Service/vi: Fix normal_params_size in GetDisplayResolution
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/core/hle/service/vi/vi.cpp
|
|
|
@ -717,7 +717,7 @@ private: |
|
|
|
IPC::RequestParser rp{ctx}; |
|
|
|
u64 display_id = rp.Pop<u64>(); |
|
|
|
|
|
|
|
IPC::ResponseBuilder rb = rp.MakeBuilder(6, 0, 0); |
|
|
|
IPC::ResponseBuilder rb = rp.MakeBuilder(4, 0, 0); |
|
|
|
rb.Push(RESULT_SUCCESS); |
|
|
|
|
|
|
|
if (Settings::values.use_docked_mode) { |
|
|
|
|