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:
authorJoerg Mueller <nexyon@gmail.com>2010-03-21 02:36:08 +0300
committerJoerg Mueller <nexyon@gmail.com>2010-03-21 02:36:08 +0300
commitb06cdb3dd70890ad6b8458def8b935128272aac5 (patch)
tree0e19babdc5d938a9ab76c8c8cefaa1d66635e59d /source/blender/editors
parentba2cfeefd0a6feb1b0a7a7eb2a00f5c265fd180f (diff)
Finally, this should really fix the msvc and old ubuntu compiler problems with NAN and finite.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/screen/screen_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c
index 969b88efc35..31df55b6818 100644
--- a/source/blender/editors/screen/screen_ops.c
+++ b/source/blender/editors/screen/screen_ops.c
@@ -2411,7 +2411,7 @@ static int screen_animation_step(bContext *C, wmOperator *op, wmEvent *event)
if((scene->audio.flag & AUDIO_SYNC) && !(sad->flag & ANIMPLAY_FLAG_REVERSE))
time = sound_sync_scene(scene);
- if(isfinite(time))
+ if(finite(time))
scene->r.cfra = floor(time * FPS);
else
{