chuniio: Increase touch pressure

The touch pressure threshold is configurable, probably best not to
set this to the bare minimum.
This commit is contained in:
Tau 2019-11-17 12:45:56 -05:00
parent 9ac573801a
commit 39abee3a75
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ static unsigned int __stdcall chuni_io_slider_thread_proc(void *ctx)
while (!chuni_io_slider_stop_flag) {
for (i = 0 ; i < 8 ; i++) {
if (GetAsyncKeyState(chuni_io_slider_keys[i]) & 0x8000) {
pressure_val = 20;
pressure_val = 128;
} else {
pressure_val = 0;
}