remove debug output

This commit is contained in:
Paul Davis 2021-01-21 17:47:56 -07:00
parent c32de2355e
commit d131a9aa12

View file

@ -261,28 +261,23 @@ Editor::compute_current_bbt_points (Temporal::TempoMapPoints& grid, samplepos_t
break; break;
case bbt_show_1: case bbt_show_1:
cout << "GG " << leftmost << " .. " << rightmost << " 1\n";
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 1); tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 1);
break; break;
case bbt_show_4: case bbt_show_4:
cout << "GG " << leftmost << " .. " << rightmost << " 4\n";
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 4); tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 4);
break; break;
case bbt_show_16: case bbt_show_16:
cout << "GG " << leftmost << " .. " << rightmost << " 16\n";
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 16); tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 16);
break; break;
case bbt_show_64: case bbt_show_64:
cout << "GG " << leftmost << " .. " << rightmost << " 64\n";
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 64); tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 64);
break; break;
default: default:
/* bbt_show_many */ /* bbt_show_many */
cout << "GG " << leftmost << " .. " << rightmost << " 128\n";
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 128); tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 128);
break; break;
} }