diff options
author | Gam3cat <31171909+Gam3cat@users.noreply.github.com> | 2019-07-05 04:56:57 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-07-05 04:56:57 -0700 |
commit | 509a34fbabeb57d57c35ddfd0243ebee3f0618a8 (patch) | |
tree | b5dd9eeeedd058d65812938aa427569216a5e366 /keyboards/hineybush/h87a/keymaps/gam3cat | |
parent | cbf76a129007d14f69fca761144c6b5fd377b150 (diff) |
[Keymap] Fixing keymap DYNAMIC_MACRO_RANGE keycode enumeration (#6248)
Diffstat (limited to 'keyboards/hineybush/h87a/keymaps/gam3cat')
-rw-r--r-- | keyboards/hineybush/h87a/keymaps/gam3cat/keymap.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/keyboards/hineybush/h87a/keymaps/gam3cat/keymap.c b/keyboards/hineybush/h87a/keymaps/gam3cat/keymap.c index 2a4e5ca410..fde2637154 100644 --- a/keyboards/hineybush/h87a/keymaps/gam3cat/keymap.c +++ b/keyboards/hineybush/h87a/keymaps/gam3cat/keymap.c @@ -12,10 +12,10 @@ enum layers { }; enum custom_keycodes { - DYNAMIC_MACRO_RANGE = SAFE_RANGE, - QMK_REV, + QMK_REV = SAFE_RANGE, KC_WEB, - KC_SP4 + KC_SP4, + DYNAMIC_MACRO_RANGE }; extern backlight_config_t backlight_config; @@ -259,11 +259,11 @@ uint32_t layer_state_set_user(uint32_t state) { break; case _FL: custom_backlight_level(2); - rgblight_sethsv_noeeprom(280,255,255); + rgblight_sethsv_noeeprom(240,255,255); break; case _AL: custom_backlight_level(3); - rgblight_sethsv_noeeprom(350,255,255); + rgblight_sethsv_noeeprom(255,255,255); break; default: custom_backlight_level(0); |