Explorar el Código

fix pattern matrix editing

LTVA1 hace 2 años
padre
commit
1680aab6a9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      input/sequence.c

+ 1 - 1
input/sequence.c

@@ -38,7 +38,7 @@ void edit_sequence_step(FlizzerTrackerApp *tracker, int8_t delta)
                 nibble += delta;
             }
 
-            temp_pattern &= 0xf0;
+            temp_pattern &= 0x0f;
             temp_pattern |= (nibble << 4);
 
             break;