diff options
| author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-08-22 21:58:23 -0400 |
|---|---|---|
| committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-08-22 21:58:23 -0400 |
| commit | 3c45452fae7f33d0534c144c5f588ef98f0a1346 (patch) | |
| tree | 02ba43c8405ae2ca8b80940653cb558d0db6191a /src/core/hle/service/hid/controllers/gesture.cpp | |
| parent | ab862207d7f2de712e1f711141d20921b414cdf7 (diff) | |
general: Use console mode helper across project
Diffstat (limited to 'src/core/hle/service/hid/controllers/gesture.cpp')
| -rw-r--r-- | src/core/hle/service/hid/controllers/gesture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/controllers/gesture.cpp b/src/core/hle/service/hid/controllers/gesture.cpp index 47d4c08fc..63eecd42b 100644 --- a/src/core/hle/service/hid/controllers/gesture.cpp +++ b/src/core/hle/service/hid/controllers/gesture.cpp @@ -331,7 +331,7 @@ Controller_Gesture::GestureProperties Controller_Gesture::GetGestureProperties() }; // Hack: There is no touch in docked but games still allow it - if (Settings::values.use_docked_mode.GetValue() == Settings::ConsoleMode::Docked) { + if (Settings::IsDockedMode()) { gesture.points[id] = { .x = static_cast<s32>(active_x * Layout::ScreenDocked::Width), .y = static_cast<s32>(active_y * Layout::ScreenDocked::Height), |
