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
path: root/source
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2007-05-14 23:52:21 +0400
committerTon Roosendaal <ton@blender.org>2007-05-14 23:52:21 +0400
commit7ddc602ebf948d763996cb7a039755580d7a2bb1 (patch)
tree34717d6c4c7d391b39630dc6fee2c90321dbb347 /source
parentd90f0b1e164321f7ce454ddaf7e8a4d10bb5143a (diff)
Second commit, now it should not bother me with passwords, according
to some person... :)
Diffstat (limited to 'source')
-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 c67c40540f7..f919aa11b98 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[ (((unsigned long)v1)/16) & 255 ];
+ buck= &bucket[ (((long)v1)/16) & 255 ];
if(buck->vert==v1) {
QUATCOPY(hoco, buck->hoco);
return buck->clip;