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:
Diffstat (limited to 'source/blender/editors/physics/physics_pointcache.c')
-rw-r--r--source/blender/editors/physics/physics_pointcache.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/physics/physics_pointcache.c b/source/blender/editors/physics/physics_pointcache.c
index a931e27bc83..858ff3637b1 100644
--- a/source/blender/editors/physics/physics_pointcache.c
+++ b/source/blender/editors/physics/physics_pointcache.c
@@ -84,11 +84,11 @@ void bake_console_progress(void *arg, int nr)
{
printf("\rbake: %3i%%", nr);
fflush(stdout);
+}
- /* endline for last report */
- if (nr == 100) {
- printf("\n");
- }
+void bake_console_progress_end(void *arg, int nr)
+{
+ printf("\n");
}
static int ptcache_bake_all_exec(bContext *C, wmOperator *op)
@@ -113,7 +113,7 @@ static int ptcache_bake_all_exec(bContext *C, wmOperator *op)
baker.progresscontext = win;
} else {
baker.progressbar = bake_console_progress;
- baker.progressend = NULL;
+ baker.progressend = bake_console_progress_end;
baker.progresscontext = NULL;
}
@@ -207,7 +207,7 @@ static int ptcache_bake_exec(bContext *C, wmOperator *op)
} else {
printf("\n"); /* empty first line before console reports */
baker.progressbar = bake_console_progress;
- baker.progressend = NULL;
+ baker.progressend = bake_console_progress_end;
baker.progresscontext = NULL;
}