Fix XInput2 cursor going to +infinite if the window size was 0
This commit is contained in:
parent
f06e9c55c8
commit
75f35393c3
|
@ -227,8 +227,8 @@ void KeyboardMouse::UpdateCursor()
|
|||
const auto window_scale = g_controller_interface.GetWindowInputScale();
|
||||
|
||||
// the mouse position as a range from -1 to 1
|
||||
m_state.cursor.x = (win_x / win_attribs.width * 2 - 1) * window_scale.x;
|
||||
m_state.cursor.y = (win_y / win_attribs.height * 2 - 1) * window_scale.y;
|
||||
m_state.cursor.x = (win_x / std::max(win_attribs.width, 1) * 2 - 1) * window_scale.x;
|
||||
m_state.cursor.y = (win_y / std::max(win_attribs.height, 1) * 2 - 1) * window_scale.y;
|
||||
}
|
||||
|
||||
void KeyboardMouse::UpdateInput()
|
||||
|
|
Loading…
Reference in New Issue