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:
authorCampbell Barton <ideasman42@gmail.com>2017-09-16 09:07:27 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-12-30 17:44:49 +0300
commitacae901a10a82acdcfad3574694fefd14148e299 (patch)
treed015ca3f4a327daa1b47909e78f664e32a56653d /source/blender/imbuf/intern/iris.c
parent495aa77b533b78e3b7a6c468b04f582c09b05611 (diff)
Fix writing Iris images w/ invalid header
Regression in e142ae77cadf
Diffstat (limited to 'source/blender/imbuf/intern/iris.c')
-rw-r--r--source/blender/imbuf/intern/iris.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/iris.c b/source/blender/imbuf/intern/iris.c
index 7a9fa2b9768..d2e72a02bc5 100644
--- a/source/blender/imbuf/intern/iris.c
+++ b/source/blender/imbuf/intern/iris.c
@@ -703,7 +703,7 @@ static int output_iris(unsigned int *lptr, int xsize, int ysize, int zsize, cons
lumbuf = (unsigned int *)MEM_mallocN(xsize * sizeof(int), "iris lumbuf");
memset(image, 0, sizeof(IMAGE));
- image->imagic = IMB_FTYPE_IMAGIC;
+ image->imagic = IMAGIC;
image->type = RLE(1);
if (zsize > 1)
image->dim = 3;