You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
293B

  1. #include "TSTempoBPM.hpp"
  2. // Notes to multiplier (mult our dT to get BPM).
  3. const TempoDivisor* BPMOptions[TROWA_TEMP_BPM_NUM_OPTIONS] = {
  4. new TempoDivisor("4", 60.0), // 1/4
  5. new TempoDivisor("8", 30.0), // 1/8
  6. new TempoDivisor("8T", 20.0), // 1/8T
  7. new TempoDivisor("16", 15.0) // 1/16
  8. };