mirror of
https://github.com/Cian-H/qmk_firmware.git
synced 2026-05-02 14:01:42 +01:00
Add support for key override introspection. (#24120)
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
## Changes requiring user action
|
||||
|
||||
### Key Override Introspection
|
||||
|
||||
Changes were made to key overrides in order to hook them into the keymap introspection system.
|
||||
|
||||
Key override signature changed from:
|
||||
|
||||
```c
|
||||
const key_override_t **key_overrides = (const key_override_t *[]){
|
||||
```
|
||||
|
||||
to:
|
||||
|
||||
```c
|
||||
const key_override_t *key_overrides[] = {
|
||||
```
|
||||
|
||||
The list of key overrides now does not need to be `NULL`-terminated.
|
||||
Reference in New Issue
Block a user