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:
authorTon Roosendaal <ton@blender.org>2004-04-24 16:02:39 +0400
committerTon Roosendaal <ton@blender.org>2004-04-24 16:02:39 +0400
commit4d29aee14011549f4be9145f1b0a3fc5ae5483ce (patch)
tree902e5780606779c2d251a12604de70ce08c4c15a /source/blender/src/usiblender.c
parent63048b6cf4358dc9231e0704e03e0f8d5729a174 (diff)
New: rendering in background mode (blender -b) now prints a percentage to
indicate scanlines being in progress. For motion blur frames it works too. Bug fix: in background render it accidentally tried to free a sound pointer that wasn't set. (caused by own commit of three days ago). Fix: rendering motion blur in forground prints correct sample # in info- header again.
Diffstat (limited to 'source/blender/src/usiblender.c')
-rw-r--r--source/blender/src/usiblender.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/usiblender.c b/source/blender/src/usiblender.c
index 8a1d046ca3f..a0609b9a039 100644
--- a/source/blender/src/usiblender.c
+++ b/source/blender/src/usiblender.c
@@ -549,7 +549,7 @@ void exit_usiblender(void)
free_txt_data();
sound_exit_audio();
- MEM_freeN(G.listener);
+ if(G.listener) MEM_freeN(G.listener);
#ifdef WITH_QUICKTIME
quicktime_exit();