[Keymap] Remove dynamic macro customization now it's a core feature. (#7301)

This commit is contained in:
Daniel Shields 2019-11-08 18:31:36 +00:00 committed by James Young
parent 0483327fa6
commit 6fd88c1556
6 changed files with 7 additions and 18 deletions

View file

@ -1,12 +1,7 @@
#include "quantum.h"
#include "dshields.h"
extern bool process_record_dynamic_macro(uint16_t keycode, keyrecord_t *record);
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
if (!process_record_dynamic_macro(keycode, record)) {
return false;
}
if (keycode == KC_ESC && record->event.pressed) {
bool rc = true;
uint8_t mods = 0;