summaryrefslogtreecommitdiff
path: root/libs/ardour/smf_source.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-06-09 06:10:30 +0000
committerDavid Robillard <d@drobilla.net>2007-06-09 06:10:30 +0000
commit13151b43f058ae97408a39b4c5160974c512c9ae (patch)
tree538375aa592eda4fd4bd828ff726a73f97f84d61 /libs/ardour/smf_source.cc
parent7ff7f4013dfbbf18d08e397230ad2486fa7ff58f (diff)
Redraw MIDI region views on zoom and track height changes.
Disable excessive/old debug prints. Fix region view heights. git-svn-id: svn://localhost/ardour2/trunk@1982 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/smf_source.cc')
-rw-r--r--libs/ardour/smf_source.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/smf_source.cc b/libs/ardour/smf_source.cc
index d1192f5186..4f3fbd1fd9 100644
--- a/libs/ardour/smf_source.cc
+++ b/libs/ardour/smf_source.cc
@@ -137,7 +137,7 @@ SMFSource::init (string pathstr, bool must_exist)
int
SMFSource::open()
{
- cerr << "Opening SMF file " << path() << " writeable: " << writable() << endl;
+ //cerr << "Opening SMF file " << path() << " writeable: " << writable() << endl;
assert(writable()); // FIXME;
@@ -149,7 +149,7 @@ SMFSource::open()
uint32_t track_size_be = 0;
fread(&track_size_be, 4, 1, _fd);
_track_size = GUINT32_FROM_BE(track_size_be);
- cerr << "SMF - read track size " << _track_size << endl;
+ //cerr << "SMF - read track size " << _track_size << endl;
// We're making a new file
} else {