Remove top-level const

For consistency, never use top-level const for local variables.

PR #5076 <https://github.com/Genymobile/scrcpy/pull/5076>
bindings_shift
Romain Vimont 3 months ago
parent b50f9eb41d
commit 487a6b9cf4

@ -846,9 +846,9 @@ sc_input_manager_process_mouse_button(struct sc_input_manager *im,
// can be used instead of Ctrl. The "virtual finger" has a position // can be used instead of Ctrl. The "virtual finger" has a position
// inverted with respect to the vertical axis of symmetry in the middle of // inverted with respect to the vertical axis of symmetry in the middle of
// the screen. // the screen.
const SDL_Keymod keymod = SDL_GetModState(); SDL_Keymod keymod = SDL_GetModState();
const bool ctrl_pressed = keymod & KMOD_CTRL; bool ctrl_pressed = keymod & KMOD_CTRL;
const bool shift_pressed = keymod & KMOD_SHIFT; bool shift_pressed = keymod & KMOD_SHIFT;
if (event->button == SDL_BUTTON_LEFT && if (event->button == SDL_BUTTON_LEFT &&
((down && !im->vfinger_down && ((down && !im->vfinger_down &&
((ctrl_pressed && !shift_pressed) || ((ctrl_pressed && !shift_pressed) ||

Loading…
Cancel
Save