Skip to content

Commit

Permalink
fixup! Refactor: Add defs_bpm.h
Browse files Browse the repository at this point in the history
  • Loading branch information
cr7pt0gr4ph7 committed Nov 1, 2024
1 parent 7922272 commit d651b82
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/engine/controls/bpm/defs_bpm.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
#pragma once

namespace mixxx {
// Nominal value range supported by the "bpm" control
// (although out-of-bounds values are supported)
// Nominal value range supported by the 'bpm' CO
// (although out-of-bounds values are supported).
//
// Note that this is different from the BPM value range
// that is supported by Mixxx internally; for that see
// mixxx::Bpm::kValueMin and mixxx::Bpm::kValueMax.
constexpr double kBpmRangeMin = 1.0;
// TODO(XXX): Change to mixxx::Bpm::kValueMax? This would affect controller mappings!
constexpr double kBpmRangeMax = 200.0;
Expand Down

0 comments on commit d651b82

Please sign in to comment.