Skip to content

Commit

Permalink
fix: exclude cond depending on stem macro var
Browse files Browse the repository at this point in the history
  • Loading branch information
acolombier committed Sep 19, 2024
1 parent 450d260 commit e4b6dec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/waveform/waveformfactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,13 @@ WaveformFactory::VersionClass WaveformFactory::waveformVersionToVersionClass(con
return VC_REMOVE;
}

#ifdef __STEM__
if (version == WAVEFORM_6_0_VERSION) {
// Used in Mixxx 2.6 beta, introducing stem data but later replaced with
// the signal scale removal
return VC_REMOVE;
}
#endif

// possible a future version
return VC_KEEP;
Expand Down

0 comments on commit e4b6dec

Please sign in to comment.