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:
Diffstat (limited to 'source/blender/radiosity')
-rw-r--r--source/blender/radiosity/intern/source/radpreprocess.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/radiosity/intern/source/radpreprocess.c b/source/blender/radiosity/intern/source/radpreprocess.c
index 0c22717e696..f343db2cee8 100644
--- a/source/blender/radiosity/intern/source/radpreprocess.c
+++ b/source/blender/radiosity/intern/source/radpreprocess.c
@@ -421,9 +421,9 @@ void rad_collect_meshes()
for(a=0; a<me->totface; a++, mface++) {
if(mface->v3) {
- TFace *tface = me->tface ? &((TFace*)me->tface)[a] : (TFace*)NULL;
+ TFace *tface = me->tface ? &((TFace*)me->tface)[a] : NULL;
- if ((tface->mode & TF_INVISIBLE)==0) {
+ if (tface == NULL || (tface->mode & TF_INVISIBLE)==0) {
rp= callocPatch();
BLI_addtail(&(RG.patchbase), rp);