diff options
author | milestogo <milestogo@users.noreply.github.com> | 2017-03-08 01:25:33 -0800 |
---|---|---|
committer | milestogo <milestogo@users.noreply.github.com> | 2017-03-08 01:25:33 -0800 |
commit | 89aba30c7f50aa733262f4add253817e2fb84e8a (patch) | |
tree | ce69838fa4121e20f744e2a0b945b7377baea36a /keyboards/handwired/MS-sculpt-mobile/keymaps/milestogo/keymap.c | |
parent | 01980c96e9c1e8ab5aad0e89d03c0e15417712c8 (diff) |
fix stupid error w/ mode switch
Diffstat (limited to 'keyboards/handwired/MS-sculpt-mobile/keymaps/milestogo/keymap.c')
-rw-r--r-- | keyboards/handwired/MS-sculpt-mobile/keymaps/milestogo/keymap.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/keyboards/handwired/MS-sculpt-mobile/keymaps/milestogo/keymap.c b/keyboards/handwired/MS-sculpt-mobile/keymaps/milestogo/keymap.c index a662825475..3b2f53a0c1 100644 --- a/keyboards/handwired/MS-sculpt-mobile/keymaps/milestogo/keymap.c +++ b/keyboards/handwired/MS-sculpt-mobile/keymaps/milestogo/keymap.c @@ -104,7 +104,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { ____, ____, ____, ____, ____, ____, ____, ____, ____, ____ ), /* -* |ESC | Win| MAC|RdLn| VI | | | | | | | | | | | | +* |ESC | MAC| Win|RdLn| VI | | | | | | | | | | | | * -------------------------------------------------------------------------------' * | | | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = |Bakspace| Del| * --------------------------------------------------------------------------- @@ -192,6 +192,7 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) /* If this is in the range of BABL macros, call a separate function */ /* Any clever remapping with modifiers should happen here e.g. shift bablkey does opposite*/ #ifdef USE_BABLPASTE + if( id >= BABL_START_NUM && id < (BABL_START_NUM + BABL_NUM_MACROS ) ) { if (record->event.pressed) { // is there a case where this isn't desired? @@ -201,6 +202,7 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) } #endif + // MACRODOWN only works in this function switch(id) { case 0: |