Browse Source

fix pattern matrix editing

LTVA1 3 năm trước cách đây
mục cha
commit
1680aab6a9
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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;