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:
authorCampbell Barton <ideasman42@gmail.com>2012-02-19 09:11:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-19 09:11:24 +0400
commit02b28e9162784933f470c5381b290f2582706a51 (patch)
tree1e1ed7c5c79eb20a57435eebc5a5f359a6feb90f /source/creator
parent445003973434da55614e90fcee2f99f1765afd8f (diff)
replace MIN2 / MAX2 with minf / maxf to avoid calling functions multiple times.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 68a7bc415a8..0b67dfabf16 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -727,7 +727,7 @@ static int render_frame(int argc, const char **argv, void *data)
BKE_reports_init(&reports, RPT_PRINT);
- frame = MIN2(MAXFRAME, MAX2(MINAFRAME, frame));
+ frame = CLAMPIS(frame, MINAFRAME, MAXFRAME);
RE_SetReports(re, &reports);
RE_BlenderAnim(re, bmain, scene, NULL, scene->lay, frame, frame, scene->r.frame_step);