diff options
author | Jay Greco <jayv.greco@gmail.com> | 2021-05-21 23:12:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 23:12:45 -0700 |
commit | e17a6c4f8df85ec1e698fcb66fd054778f1e0136 (patch) | |
tree | 13b1c613cfcee49340b3a0afa42e7474f5e98cdf /keyboards/nullbitsco/scramble/keymaps | |
parent | 3328aefd8ebfd06217447ab8f2de2560193a38c1 (diff) |
[Keymap] Fix wrong BASE layer for default and OLED keymaps (#12932)
Diffstat (limited to 'keyboards/nullbitsco/scramble/keymaps')
-rw-r--r-- | keyboards/nullbitsco/scramble/keymaps/default/keymap.c | 2 | ||||
-rw-r--r-- | keyboards/nullbitsco/scramble/keymaps/oled/keymap.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/nullbitsco/scramble/keymaps/default/keymap.c b/keyboards/nullbitsco/scramble/keymaps/default/keymap.c index 81bd732db7..2ccffe3d86 100644 --- a/keyboards/nullbitsco/scramble/keymaps/default/keymap.c +++ b/keyboards/nullbitsco/scramble/keymaps/default/keymap.c @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include QMK_KEYBOARD_H -#define _BASE 1 +#define _BASE 0 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { diff --git a/keyboards/nullbitsco/scramble/keymaps/oled/keymap.c b/keyboards/nullbitsco/scramble/keymaps/oled/keymap.c index eac0a470f3..7168ad9ec6 100644 --- a/keyboards/nullbitsco/scramble/keymaps/oled/keymap.c +++ b/keyboards/nullbitsco/scramble/keymaps/oled/keymap.c @@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include QMK_KEYBOARD_H -#define _BASE 1 +#define _BASE 0 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |