13
0

BBTTest::addTest() should add a meter rather than replacing the first one.

This commit is contained in:
nick_m 2016-08-10 01:56:55 +10:00
parent 9acfdb31a2
commit 13413c0b0f

View File

@ -16,7 +16,8 @@ BBTTest::addTest ()
Tempo tempo(120);
Meter meter(4.0, 4.0);
map.add_meter (meter, 0.0, BBT_Time(1, 1, 0), 0, AudioTime);
/* no need to supply the frame for a new music-locked meter */
map.add_meter (meter, 4.0, BBT_Time(2, 1, 0), 0, MusicTime);
/* add some good stuff here */
}