summaryrefslogtreecommitdiff
path: root/quantum/action_code.h
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2022-10-01 06:29:24 +1000
committerGitHub <noreply@github.com>2022-09-30 16:29:24 -0400
commit2c96c7526356ba76400c6fa61bd0805e81c5aa31 (patch)
treef9902067d97a63b5c26f7a2ef0f09fffa9cb617d /quantum/action_code.h
parent8bd73d44555ecb50d0da9bb0e1e48c07b9764e35 (diff)
Small un/register_code() cleanups (#18544)
Diffstat (limited to 'quantum/action_code.h')
-rw-r--r--quantum/action_code.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/quantum/action_code.h b/quantum/action_code.h
index e107f0a740..14cfd025f1 100644
--- a/quantum/action_code.h
+++ b/quantum/action_code.h
@@ -192,7 +192,11 @@ enum mods_codes {
/** \brief Other Keys
*/
-enum usage_pages { PAGE_SYSTEM, PAGE_CONSUMER };
+enum usage_pages {
+ PAGE_SYSTEM,
+ PAGE_CONSUMER,
+};
+
#define ACTION_USAGE_SYSTEM(id) ACTION(ACT_USAGE, PAGE_SYSTEM << 10 | (id))
#define ACTION_USAGE_CONSUMER(id) ACTION(ACT_USAGE, PAGE_CONSUMER << 10 | (id))
#define ACTION_MOUSEKEY(key) ACTION(ACT_MOUSEKEY, key)