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>2007-05-14 23:50:33 +0400
committerTon Roosendaal <ton@blender.org>2007-05-14 23:50:33 +0400
commitd90f0b1e164321f7ce454ddaf7e8a4d10bb5143a (patch)
treef9925e22fd3865e4c010f4c78c259cf3c177348b /source/blender
parenteea80750a67f895376da5bddd06ac6fa00dd3fdc (diff)
Testing commit to see how it goes...
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/render/intern/source/zbuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/render/intern/source/zbuf.c b/source/blender/render/intern/source/zbuf.c
index f919aa11b98..c67c40540f7 100644
--- a/source/blender/render/intern/source/zbuf.c
+++ b/source/blender/render/intern/source/zbuf.c
@@ -1841,7 +1841,7 @@ static int hashlist_projectvert(float *v1, float winmat[][4], float *hoco)
return 0;
}
- buck= &bucket[ (((long)v1)/16) & 255 ];
+ buck= &bucket[ (((unsigned long)v1)/16) & 255 ];
if(buck->vert==v1) {
QUATCOPY(hoco, buck->hoco);
return buck->clip;