Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2009-12-06 12:37:31 +0300
committerJoshua Leung <aligorith@gmail.com>2009-12-06 12:37:31 +0300
commitba0981031ae20f1cda43a2491f6347295b6a17d2 (patch)
tree1b24101b9721a9bc8c2680c35da5a491968bf07f /source/blender/editors/animation/keyframes_draw.c
parentf08e8af0b9568798bd2f59daf1b83dd0f7204ced (diff)
Assorted warning and comment fixes
Diffstat (limited to 'source/blender/editors/animation/keyframes_draw.c')
-rw-r--r--source/blender/editors/animation/keyframes_draw.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/animation/keyframes_draw.c b/source/blender/editors/animation/keyframes_draw.c
index 512dc92de1d..15ca0fab35f 100644
--- a/source/blender/editors/animation/keyframes_draw.c
+++ b/source/blender/editors/animation/keyframes_draw.c
@@ -229,6 +229,7 @@ static void nupdate_abk_bezt (void *node, void *data)
/* just add the BezTriple to the buffer if there's space, or allocate a new one */
if (abk->numBezts >= sizeof(abk->bezts)/sizeof(BezTriple)) {
// TODO: need to allocate new array to cater...
+ // FIXME: urgent... is a problem when working with duplicate keyframes
//bezts_extra= MEM_callocN(...);
printf("FIXME: nupdate_abk_bezt() missing case for too many overlapping BezTriples \n");
}