summaryrefslogtreecommitdiff
path: root/libs/ardour/midi_track.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-09-16 21:45:10 +0000
committerCarl Hetherington <carl@carlh.net>2011-09-16 21:45:10 +0000
commite65636a0873dfe78af1625ea1c9d15d6c0e8b881 (patch)
tree7978b4a0896585ee86c7c79765082200592df799 /libs/ardour/midi_track.cc
parent32cc3995955cff4b01f127b9d7ee1c350a8e084f (diff)
Remove unused parameter.
git-svn-id: svn://localhost/ardour2/branches/3.0@10090 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/midi_track.cc')
-rw-r--r--libs/ardour/midi_track.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/midi_track.cc b/libs/ardour/midi_track.cc
index 1df9950f86..bf1cd363dc 100644
--- a/libs/ardour/midi_track.cc
+++ b/libs/ardour/midi_track.cc
@@ -405,9 +405,9 @@ MidiTrack::roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame
int
MidiTrack::no_roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame,
- bool state_changing, bool can_record, bool rec_monitors_input)
+ bool state_changing, bool can_record)
{
- int ret = Track::no_roll (nframes, start_frame, end_frame, state_changing, can_record, rec_monitors_input);
+ int ret = Track::no_roll (nframes, start_frame, end_frame, state_changing, can_record);
if (ret == 0 && _step_editing) {
push_midi_input_to_step_edit_ringbuffer (nframes);