From 3e5c760c88255ffb301045f832b297d2940ffb14 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Mon, 12 May 2008 21:43:12 -0500 Subject: [PATCH] Oops. Fix control sequence playback broken by renmaing. --- Timeline/Control_Point.H | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Timeline/Control_Point.H b/Timeline/Control_Point.H index 2eff4eb..0f99742 100644 --- a/Timeline/Control_Point.H +++ b/Timeline/Control_Point.H @@ -55,7 +55,7 @@ public: float control ( void ) const { return _y; } void control ( float v ) { _y = v; } /* only for playback thread */ - nframes_t when ( void ) const { return _range.offset; } + nframes_t when ( void ) const { return _range.start; } int abs_w ( void ) const { return 6; }