Repeat INSENSITIVE colors instead of relying on inheritance
[ardour.git] / libs / ardour / audio_unit.cc
index dbcb697578d8ad043df42157130c30ea11e3da8f..13bc57973191282895464cb76b483378ed099b4d 100644 (file)
@@ -1833,7 +1833,7 @@ AUPlugin::get_musical_time_location_callback (UInt32*   outDeltaSampleOffsetToNe
                        /* on the beat */
                        *outDeltaSampleOffsetToNextBeat = 0;
                } else {
-                       double const next_beat = cail (tmap.quarter_note_at_frame (transport_frame + input_offset));
+                       double const next_beat = ceil (tmap.quarter_note_at_frame (transport_frame + input_offset));
                        framepos_t const next_beat_frame = tmap.frame_at_quarter_note (next_beat);
 
                        *outDeltaSampleOffsetToNextBeat = next_beat_frame - (transport_frame + input_offset);
@@ -1858,7 +1858,7 @@ AUPlugin::get_musical_time_location_callback (UInt32*   outDeltaSampleOffsetToNe
                bbt.beats = 1;
                bbt.ticks = 0;
 
-               *outCurrentMeasureDownBeat = tmap..pulse_at_bbt (bbt) * 4.0;
+               *outCurrentMeasureDownBeat = tmap.pulse_at_bbt (bbt) * 4.0;
        }
 
        return noErr;