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:
authorBastien Montagne <montagne29@wanadoo.fr>2011-12-31 19:10:38 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2011-12-31 19:10:38 +0400
commit1b4487e813edac9c5b57b6d5c6175c46c4a54b1c (patch)
tree59e9bd7c67fb68fe8eb2500f5f476a1f536d9b73 /source/blender/blenlib/intern
parentbac6757ea0b1c873b8dd8221592ea95eed8d5bac (diff)
Fix [#29728] Explode Modifier Causes Crash.
The problem was in fact in recent BLI_edgehash changes: a typo in the new macro EDGE_ORD made v0 > v1, instead of v0 < v1. This caused the bug in explode modifier, which (ab)uses that ordering feature a bit…
Diffstat (limited to 'source/blender/blenlib/intern')
-rw-r--r--source/blender/blenlib/intern/edgehash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/edgehash.c b/source/blender/blenlib/intern/edgehash.c
index b710e5d496d..97eb66eb49a 100644
--- a/source/blender/blenlib/intern/edgehash.c
+++ b/source/blender/blenlib/intern/edgehash.c
@@ -52,7 +52,7 @@ static unsigned int _ehash_hashsizes[]= {
/* ensure v0 is smaller */
#define EDGE_ORD(v0, v1) \
- if (v0 < v1) { \
+ if (v0 > v1) { \
v0 ^= v1; \
v1 ^= v0; \
v0 ^= v1; \