Browse Source

[Keymap] Fix wrong BASE layer for default and OLED keymaps (#12932)

pull/12983/head
Jay Greco 3 years ago
committed by GitHub
parent
commit
e17a6c4f8d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      keyboards/nullbitsco/scramble/keymaps/default/keymap.c
  2. +1
    -1
      keyboards/nullbitsco/scramble/keymaps/oled/keymap.c

+ 1
- 1
keyboards/nullbitsco/scramble/keymaps/default/keymap.c View File

@ -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] = {


+ 1
- 1
keyboards/nullbitsco/scramble/keymaps/oled/keymap.c View File

@ -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] = {


Loading…
Cancel
Save