]> git.mdlowis.com Git - projs/tide.git/commitdiff
ignore left and right arrows for xpick for the time being
authorMichael D. Lowis <mike.lowis@gentex.com>
Tue, 8 Nov 2016 20:24:39 +0000 (15:24 -0500)
committerMichael D. Lowis <mike.lowis@gentex.com>
Tue, 8 Nov 2016 20:24:39 +0000 (15:24 -0500)
xpick.c

diff --git a/xpick.c b/xpick.c
index 91b293b567928e05ba99094c7e88403e27d72a8c..610c1230d7a1a31f4913cb159f8ff8fa7003ab81 100644 (file)
--- a/xpick.c
+++ b/xpick.c
@@ -183,6 +183,8 @@ static void mouse_input(MouseAct act, MouseBtn btn, int x, int y) {
 
 static void keyboard_input(uint32_t key) {
     switch (key) {
+        case KEY_LEFT:  break;
+        case KEY_RIGHT: break;
         case KEY_UP:
             if (ChoiceIdx > 0) ChoiceIdx--;
             break;