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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2007-11-27 12:59:18 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2007-11-27 12:59:18 +0300
commite39b5f790d806258c26827fad18f40b5815f6b3b (patch)
treee1a00abf174950668bbc9792476441c83c1d2483 /source/blender/src/editscreen.c
parent4c07fb72ece578f535160bf719a47c802b97a2f1 (diff)
Particles
========= - Fix for bug #7832: boids physics crashed. - Bugfix for child particles not getting orco texture coords. - Allow smaller strand sizes in blender units. - Fix for a common but harmless uninitialized value warning in valgrind, in the event queue.
Diffstat (limited to 'source/blender/src/editscreen.c')
-rw-r--r--source/blender/src/editscreen.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/src/editscreen.c b/source/blender/src/editscreen.c
index 57d4bde9b8a..da6884d4394 100644
--- a/source/blender/src/editscreen.c
+++ b/source/blender/src/editscreen.c
@@ -491,6 +491,8 @@ static void addqueue_ext(short win, unsigned short event, short val, char ascii)
}
else {
BWinEvent evt;
+
+ memset(&evt, 0, sizeof(evt));
evt.event= event;
evt.val= val;
evt.ascii= ascii;