File tree 1 file changed +11
-0
lines changed
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ MixData* mixAddress(uint8_t idx) { return &g_model.mixData[idx]; }
31
31
32
32
uint8_t getMixCount () { return _nb_mix_lines; }
33
33
34
+ // Slow up/down calculation array
35
+ extern int32_t act [MAX_MIXERS];
36
+
34
37
void insertMix (uint8_t idx, uint8_t channel)
35
38
{
36
39
mixerTaskStop ();
@@ -52,6 +55,10 @@ void insertMix(uint8_t idx, uint8_t channel)
52
55
mix->weight = 100 ;
53
56
mixerTaskStart ();
54
57
58
+ // Update slow up/down array
59
+ memmove (&act[idx + 1 ], &act[idx], (MAX_MIXERS - (idx + 1 )) * sizeof (int32_t ));
60
+ act[idx] = 0 ;
61
+
55
62
_nb_mix_lines += 1 ;
56
63
storageDirty (EE_MODEL);
57
64
}
@@ -64,6 +71,10 @@ void deleteMix(uint8_t idx)
64
71
memclear (&g_model.mixData [MAX_MIXERS - 1 ], sizeof (MixData));
65
72
mixerTaskStart ();
66
73
74
+ // Update slow up/down array
75
+ memmove (&act[idx], &act[idx + 1 ], (MAX_MIXERS - (idx + 1 )) * sizeof (int32_t ));
76
+ act[MAX_MIXERS - 1 ] = 0 ;
77
+
67
78
_nb_mix_lines -= 1 ;
68
79
storageDirty (EE_MODEL);
69
80
}
You can’t perform that action at this time.
0 commit comments