Skip to content

Commit

Permalink
Merge pull request mixxxdj#14198 from Ge-lx/main
Browse files Browse the repository at this point in the history
Fix RUBBERBANDV3 macro in rubberbandwrapper.cpp
  • Loading branch information
daschuer authored Jan 20, 2025
2 parents 0b88889 + d80b828 commit 675d427
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/engine/bufferscalers/rubberbandwrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@

using RubberBand::RubberBandStretcher;

#define RUBBERBANDV3 (RUBBERBAND_API_MAJOR_VERSION >= 2 && RUBBERBAND_API_MINOR_VERSION >= 7)
#define RUBBERBANDV3 (RUBBERBAND_API_MAJOR_VERSION >= 3 || \
(RUBBERBAND_API_MAJOR_VERSION == 2 && RUBBERBAND_API_MINOR_VERSION >= 7))

namespace {

Expand Down

0 comments on commit 675d427

Please sign in to comment.