Przeglądaj źródła

fix pattern matrix editing

LTVA1 2 lat temu
rodzic
commit
1680aab6a9
1 zmienionych plików z 1 dodań i 1 usunięć
  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;