소스 검색

fix pattern matrix editing

LTVA1 3 년 전
부모
커밋
1680aab6a9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;