diff options
author | Tim E. Real <termtech@rogers.com> | 2012-12-14 06:36:22 +0000 |
---|---|---|
committer | Tim E. Real <termtech@rogers.com> | 2012-12-14 06:36:22 +0000 |
commit | 52cf08ae820453dc46e307ee9463faf4e14fc67f (patch) | |
tree | 813b3fe03662c596891b8d86bf11f3b6878b88fa /muse2/muse | |
parent | fe749a83cc4fab70ba8d4102f0b7d5543e9b5350 (diff) |
Changed default song length to 150 bars (5 min)
Diffstat (limited to 'muse2/muse')
-rw-r--r-- | muse2/muse/song.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/muse2/muse/song.cpp b/muse2/muse/song.cpp index 542c6abc..3349686b 100644 --- a/muse2/muse/song.cpp +++ b/muse2/muse/song.cpp @@ -2131,7 +2131,7 @@ void Song::clear(bool signal, bool clear_all) _cycleMode = CYCLE_NORMAL; _click = false; _quantize = false; - _len = 0; // song len in ticks + _len = AL::sigmap.bar2tick(150, 0, 0); // default song len in ticks set for 150 bars _follow = JUMP; dirty = false; initDrumMap(); |