diff options
Diffstat (limited to 'keyboards/sneakbox')
-rw-r--r-- | keyboards/sneakbox/aliceclonergb/aliceclonergb.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/keyboards/sneakbox/aliceclonergb/aliceclonergb.c b/keyboards/sneakbox/aliceclonergb/aliceclonergb.c index e2136312d3..62d0118cf9 100644 --- a/keyboards/sneakbox/aliceclonergb/aliceclonergb.c +++ b/keyboards/sneakbox/aliceclonergb/aliceclonergb.c @@ -16,17 +16,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "aliceclonergb.h" - -#ifdef ENCODER_ENABLE -bool encoder_update_kb(uint8_t index, bool clockwise) { - if (!encoder_update_user(index,clockwise)) { return false; } - if (index == 0) { /* First encoder */ - if (clockwise) { - tap_code(KC_DOWN); - } else { - tap_code(KC_UP); - } - } - return true; -} -#endif |