diff options
author | Javier <dev.git@javispedro.com> | 2024-07-07 18:54:43 +0200 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2024-07-07 18:54:43 +0200 |
commit | 347e5022e7f93abd1bddd361b843f7c63325904d (patch) | |
tree | 0e7f683129132b949abce8d5968df43423e9505c /mousetsr.h | |
parent | 6b85171610e7ba1e0c06dd70037f02788ad3cd35 (diff) | |
download | vbados-347e5022e7f93abd1bddd361b843f7c63325904d.tar.gz vbados-347e5022e7f93abd1bddd361b843f7c63325904d.zip |
refactor int16 store keystroke with separate scancode/character args
Diffstat (limited to 'mousetsr.h')
-rw-r--r-- | mousetsr.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -102,7 +102,7 @@ typedef struct tsrdata { /** Whether to enable & use wheel mouse. */ bool usewheel; /** Key (scancode) to generate on wheel scroll up/down, or 0 for none. */ - uint16_t wheel_up_key, wheel_down_key; + uint8_t wheel_up_key, wheel_down_key; #endif // Video settings |