From 9f3cc2a2e0c0927c2acf372cd9da68565480c993 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Fri, 16 May 2008 18:44:18 -0500 Subject: [PATCH] Improve tick calculation? --- Timeline/Timeline.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Timeline/Timeline.C b/Timeline/Timeline.C index 148bb64..5184637 100644 --- a/Timeline/Timeline.C +++ b/Timeline/Timeline.C @@ -491,7 +491,7 @@ done: /* FIXME: this this right? */ - const nframes_t frames_per_tick = frames_per_beat / ticks_per_beat; + const double frames_per_tick = frames_per_beat / ticks_per_beat; bbt.tick = ( end - f ) / frames_per_tick; return pos;