From 3740937865b4f631ab8384187c706d0bc0fb37a5 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Mon, 27 Mar 2017 15:32:48 -0700 Subject: [PATCH] Update to new handle_keyswitch_event API naming --- src/Kaleidoscope/GhostInTheFirmware.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Kaleidoscope/GhostInTheFirmware.cpp b/src/Kaleidoscope/GhostInTheFirmware.cpp index c44cafaa..973b9d2a 100644 --- a/src/Kaleidoscope/GhostInTheFirmware.cpp +++ b/src/Kaleidoscope/GhostInTheFirmware.cpp @@ -70,12 +70,12 @@ namespace KaleidoscopePlugins { byte row = pgm_read_byte (&(ghostKeys[currentPos].row)); byte col = pgm_read_byte (&(ghostKeys[currentPos].col)); - handle_key_event (Key_NoKey, row, col, WAS_PRESSED); + handle_keyswitch_event (Key_NoKey, row, col, WAS_PRESSED); } else if (isPressed) { byte row = pgm_read_byte (&(ghostKeys[currentPos].row)); byte col = pgm_read_byte (&(ghostKeys[currentPos].col)); - handle_key_event (Key_NoKey, row, col, IS_PRESSED); + handle_keyswitch_event (Key_NoKey, row, col, IS_PRESSED); } else if ((millis () - startTime) > delayTimeOut) { currentPos++; pressTimeOut = 0;