From e6c792787b956839a040e11f8116eba4e30540cf Mon Sep 17 00:00:00 2001 From: Tau Date: Sun, 17 Nov 2019 12:45:56 -0500 Subject: [PATCH] chuniio: Increase touch pressure The touch pressure threshold is configurable, probably best not to set this to the bare minimum. --- chuniio/chuniio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chuniio/chuniio.c b/chuniio/chuniio.c index ed02ace..7823669 100644 --- a/chuniio/chuniio.c +++ b/chuniio/chuniio.c @@ -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; }