summaryrefslogtreecommitdiff
path: root/docs/feature_dynamic_macros.md
diff options
context:
space:
mode:
authorJohannes H. Jensen <joh@pseudoberries.com>2023-04-03 05:01:07 +0200
committerGitHub <noreply@github.com>2023-04-03 13:01:07 +1000
commit68efea70b268aceb28c28abb26641fad8d6acefd (patch)
treee26fe123a2ca166d9e958d618bbafc2577fbab00 /docs/feature_dynamic_macros.md
parent9a68472da87bea6eb9e209b8cf90de09211f23c8 (diff)
Add direction to dynamic_macro_record_start_user (#19689)
Diffstat (limited to 'docs/feature_dynamic_macros.md')
-rw-r--r--docs/feature_dynamic_macros.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_dynamic_macros.md b/docs/feature_dynamic_macros.md
index f5a6952b6b..8ab1bad61c 100644
--- a/docs/feature_dynamic_macros.md
+++ b/docs/feature_dynamic_macros.md
@@ -59,7 +59,7 @@ There are a number of hooks that you can use to add custom functionality and fee
Note, that direction indicates which macro it is, with `1` being Macro 1, `-1` being Macro 2, and 0 being no macro.
-* `dynamic_macro_record_start_user(void)` - Triggered when you start recording a macro.
+* `dynamic_macro_record_start_user(int8_t direction)` - Triggered when you start recording a macro.
* `dynamic_macro_play_user(int8_t direction)` - Triggered when you play back a macro.
* `dynamic_macro_record_key_user(int8_t direction, keyrecord_t *record)` - Triggered on each keypress while recording a macro.
* `dynamic_macro_record_end_user(int8_t direction)` - Triggered when the macro recording is stopped.