summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-01-05 06:26:29 +0100
committerGitHub <noreply@github.com>2019-01-05 06:26:29 +0100
commit59c665b28eccdbfc49ce9dcfad8cbeb3cea19f37 (patch)
treefa4a50a1cf70c210202b2c41c163b2b362bf9ded
parentMerge pull request #1981 from ogniK5377/open-app-area-create (diff)
parentservice/vi: Correct reported dimensions from IApplicationDisplayService's GetDisplayResolution() (diff)
downloadyuzu-59c665b28eccdbfc49ce9dcfad8cbeb3cea19f37.tar
yuzu-59c665b28eccdbfc49ce9dcfad8cbeb3cea19f37.tar.gz
yuzu-59c665b28eccdbfc49ce9dcfad8cbeb3cea19f37.tar.bz2
yuzu-59c665b28eccdbfc49ce9dcfad8cbeb3cea19f37.tar.lz
yuzu-59c665b28eccdbfc49ce9dcfad8cbeb3cea19f37.tar.xz
yuzu-59c665b28eccdbfc49ce9dcfad8cbeb3cea19f37.tar.zst
yuzu-59c665b28eccdbfc49ce9dcfad8cbeb3cea19f37.zip
-rw-r--r--src/core/hle/service/vi/vi.cpp20
1 files changed, 8 insertions, 12 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp
index 8528925ec..1bdf19e13 100644
--- a/src/core/hle/service/vi/vi.cpp
+++ b/src/core/hle/service/vi/vi.cpp
@@ -958,22 +958,18 @@ private:
IPC::RequestParser rp{ctx};
const u64 display_id = rp.Pop<u64>();
- LOG_WARNING(Service_VI, "(STUBBED) called. display_id=0x{:016X}", display_id);
+ LOG_DEBUG(Service_VI, "called. display_id=0x{:016X}", display_id);
IPC::ResponseBuilder rb{ctx, 6};
rb.Push(RESULT_SUCCESS);
- if (Settings::values.use_docked_mode) {
- rb.Push(static_cast<u64>(DisplayResolution::DockedWidth) *
- static_cast<u32>(Settings::values.resolution_factor));
- rb.Push(static_cast<u64>(DisplayResolution::DockedHeight) *
- static_cast<u32>(Settings::values.resolution_factor));
- } else {
- rb.Push(static_cast<u64>(DisplayResolution::UndockedWidth) *
- static_cast<u32>(Settings::values.resolution_factor));
- rb.Push(static_cast<u64>(DisplayResolution::UndockedHeight) *
- static_cast<u32>(Settings::values.resolution_factor));
- }
+ // This only returns the fixed values of 1280x720 and makes no distinguishing
+ // between docked and undocked dimensions. We take the liberty of applying
+ // the resolution scaling factor here.
+ rb.Push(static_cast<u64>(DisplayResolution::UndockedWidth) *
+ static_cast<u32>(Settings::values.resolution_factor));
+ rb.Push(static_cast<u64>(DisplayResolution::UndockedHeight) *
+ static_cast<u32>(Settings::values.resolution_factor));
}
void SetLayerScalingMode(Kernel::HLERequestContext& ctx) {