diff options
Diffstat (limited to 'keyboards/kapcave')
-rw-r--r-- | keyboards/kapcave/arya/arya.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/keyboards/kapcave/arya/arya.c b/keyboards/kapcave/arya/arya.c index af5d19be4f..13cae06189 100644 --- a/keyboards/kapcave/arya/arya.c +++ b/keyboards/kapcave/arya/arya.c @@ -15,13 +15,3 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "arya.h" - -bool encoder_update_kb(uint8_t index, bool clockwise) { - if (!encoder_update_user(index, clockwise)) { return false; } - if (clockwise) { - tap_code(KC_VOLU); - } else { - tap_code(KC_VOLD); - } - return true; -} |