Exemple #1
0
  MetronomeImp (void const* audioData, int dataBytes)
    : m_sampleRate (44100)
    , m_tempo (120)
    , m_phase (0)
    , m_active (false)
  {
    m_synth.setNoteStealingEnabled (true);

    setTickSample (audioData, dataBytes);
  }