aboutsummaryrefslogtreecommitdiffstats
path: root/docs/ChangeLog/20200829/PR9318.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ChangeLog/20200829/PR9318.md')
-rw-r--r--docs/ChangeLog/20200829/PR9318.md11
1 files changed, 0 insertions, 11 deletions
diff --git a/docs/ChangeLog/20200829/PR9318.md b/docs/ChangeLog/20200829/PR9318.md
deleted file mode 100644
index c238f6e44..000000000
--- a/docs/ChangeLog/20200829/PR9318.md
+++ /dev/null
@@ -1,11 +0,0 @@
-### Bigger integer type when looping over combos.
-
-[#9318](https://github.com/qmk/qmk_firmware/pull/9318)
-
-Changes `uint8_t` to `uint16_t` so it is possible have more than 256 combos.
-
-Any fork that uses `process_combo_event` needs to update the function's first argument to `uint16_t`.
-
-| Old function | New Function |
-|---------------------------------------------------------------|----------------------------------------------------------------|
-| `void process_combo_event(uint8_t combo_index, bool pressed)` | `void process_combo_event(uint16_t combo_index, bool pressed)` |