From 44e0cf5c2e0c7c44b01c8391cb6688f88625e537 Mon Sep 17 00:00:00 2001 From: Herman Semenov Date: Mon, 23 Jun 2025 01:07:00 +0300 Subject: [PATCH] inputstr: _ScrollInfo decreased cacheline size 24 to 16 bytes --- include/inputstr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/inputstr.h b/include/inputstr.h index bc9f67b93..7029560f3 100644 --- a/include/inputstr.h +++ b/include/inputstr.h @@ -248,8 +248,8 @@ typedef struct _KeyClassRec { } KeyClassRec, *KeyClassPtr; typedef struct _ScrollInfo { - enum ScrollType type; double increment; + enum ScrollType type; int flags; } ScrollInfo, *ScrollInfoPtr;