diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-07-03 12:16:16 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-07-03 12:16:16 +0200 |
commit | 00b3822306deed11547ae05e513bf7031dcba3da (patch) | |
tree | 17ade3a848bed047343e01b1f6a3f7c83af96dd8 /core/input | |
parent | 6f024546341fa53eccdafff39e5095979e346c72 (diff) |
Input: Re-enable input accumulation by default
I turned it off by mistake in #38697.
See also #62664 for details on this boolean's complex history :)
Diffstat (limited to 'core/input')
-rw-r--r-- | core/input/input.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/input/input.h b/core/input/input.h index f02f2abae5..3ad8c91ddf 100644 --- a/core/input/input.h +++ b/core/input/input.h @@ -110,7 +110,7 @@ private: bool emulate_touch_from_mouse = false; bool emulate_mouse_from_touch = false; bool use_input_buffering = false; - bool use_accumulated_input = false; + bool use_accumulated_input = true; int mouse_from_touch_index = -1; |