From 369fe286871e741cc69f01e15bd5686b2559f02e Mon Sep 17 00:00:00 2001 From: Hay1tsme Date: Sun, 2 Mar 2025 04:10:35 -0500 Subject: [PATCH] disable excess logging for carol touchscreen hook --- carolhook/touch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/carolhook/touch.c b/carolhook/touch.c index 70c2e92..cf94355 100644 --- a/carolhook/touch.c +++ b/carolhook/touch.c @@ -196,7 +196,7 @@ static void touch_scan_auto(const bool is_pressed, const uint16_t mouse_x, const flg = resp.touches[0].x1 != last_x1 || resp.touches[0].x2 != last_x2 || resp.touches[0].y1 != last_y1 || resp.touches[0].y2 != last_y2; -#if 1 +#if 0 if (flg) dprintf("Touch: Mouse down! x %02X %02X y: %02X %02X\n", resp.touches[0].x1, resp.touches[0].x2, resp.touches[0].y1, resp.touches[0].y2); #endif