Skip to content

Commit

Permalink
ConverterSwitchLeftAndRight add missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
pschatzmann committed Sep 16, 2024
1 parent 5b4c356 commit f2c4d26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/AudioTools/BaseConverter.h
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,8 @@ class ConverterSwitchLeftAndRight : public BaseConverter {
T *sample = (T *)src;
for (size_t j = 0; j < size; j++) {
T temp = *sample;
*sample = *(sample + 1) * (sample + 1) = temp;
*sample = *(sample + 1);
*(sample + 1) = temp;
sample += 2;
}
}
Expand Down

0 comments on commit f2c4d26

Please sign in to comment.