aboutsummaryrefslogtreecommitdiffstats
path: root/quantum/action.h
diff options
context:
space:
mode:
authorPascal Getreuer2025-11-11 12:27:12 +0100
committerGitHub2025-11-11 12:27:12 +0100
commitefc5d63383b64291f25c8377bcfae8178dd63302 (patch)
tree6da3bafb3a53f478acae6d007cf94f90a2f26057 /quantum/action.h
parent2af9aac61c70b543f29f658984ea66993cc3db04 (diff)
[Core] Speculative Hold option for mod-taps: hold mods instantly while unsettled. (#25572)
Diffstat (limited to 'quantum/action.h')
-rw-r--r--quantum/action.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/action.h b/quantum/action.h
index 7616486c6d..a459c438c1 100644
--- a/quantum/action.h
+++ b/quantum/action.h
@@ -38,7 +38,7 @@ extern "C" {
/* tapping count and state */
typedef struct {
bool interrupted : 1;
- bool reserved2 : 1;
+ bool speculated : 1;
bool reserved1 : 1;
bool reserved0 : 1;
uint8_t count : 4;