mirror of
https://github.com/vale981/openAV-Luppp
synced 2025-03-05 09:01:39 -05:00
Fixed compilation warnings
This commit is contained in:
parent
daa852b071
commit
66bd2899c8
2 changed files with 4 additions and 4 deletions
|
@ -33,8 +33,8 @@ Metronome::Metronome() :
|
||||||
TimeObserver(),
|
TimeObserver(),
|
||||||
playBar (false),
|
playBar (false),
|
||||||
active (false),
|
active (false),
|
||||||
playPoint (0),
|
vol (1),
|
||||||
vol (1)
|
playPoint (0)
|
||||||
{
|
{
|
||||||
//Create Beat/Bar samples
|
//Create Beat/Bar samples
|
||||||
beatSample=new float[jack->getSamplerate()];
|
beatSample=new float[jack->getSamplerate()];
|
||||||
|
|
|
@ -33,8 +33,8 @@ extern Jack* jack;
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
TimeManager::TimeManager():
|
TimeManager::TimeManager():
|
||||||
observers(),
|
transportState( TRANSPORT_ROLLING ),
|
||||||
transportState( TRANSPORT_ROLLING )
|
observers()
|
||||||
{
|
{
|
||||||
samplerate = jack->getSamplerate();
|
samplerate = jack->getSamplerate();
|
||||||
// 120 BPM default
|
// 120 BPM default
|
||||||
|
|
Loading…
Add table
Reference in a new issue