Skip to content

Commit b46848b

Browse files
committed
Entangle: fix stereo index mismatch
1 parent 4913e2d commit b46848b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/randrouter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ struct Randrouter : Module {
656656
else {
657657
for (int ii = 0; ii < SIGNAL_COUNT; ii += 2) {
658658
int oi = 2 * std::floor(output_map[ii] / 2);
659-
bool ii_is_8 = oi == 8;
659+
bool ii_is_8 = ii == 8;
660660
bool oi_is_8 = oi == 8;
661661
if (ii_is_8) {
662662
if (oi_is_8) {

0 commit comments

Comments
 (0)