diff --git a/src/gui/touchscreengui.cpp b/src/gui/touchscreengui.cpp index 861eaa2950d2..d2a0b16c05a5 100644 --- a/src/gui/touchscreengui.cpp +++ b/src/gui/touchscreengui.cpp @@ -832,8 +832,8 @@ void TouchScreenGUI::translateEvent(const SEvent &event) m_move_pos = touch_pos; m_pointer_pos[event.TouchInput.ID] = touch_pos; - // adapt to similar behavior as pc screen - const double d = g_settings->getFloat("touchscreen_sensitivity", 0.001f, 10.0f) * 3.0f; + const double d = g_settings->getFloat("touchscreen_sensitivity", 0.001f, 10.0f) + * 6.0f / RenderingEngine::getDisplayDensity(); // update camera_yaw and camera_pitch m_camera_yaw_change -= dir_free.X * d;