From 0c23d0c2ad9da1342bf35207dcc7b184f1e48c2a Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Mon, 14 Jul 2008 10:26:11 +0000 Subject: Bugfix #17327 Small one: changed the string attribute in multilayer exr files to be: "2.43 and newer" To indicate that it's about compatibility of the exr file, not the version Blender saved it in. --- source/blender/imbuf/intern/openexr/openexr_api.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/imbuf') diff --git a/source/blender/imbuf/intern/openexr/openexr_api.cpp b/source/blender/imbuf/intern/openexr/openexr_api.cpp index fe352610a40..3e618a483e3 100644 --- a/source/blender/imbuf/intern/openexr/openexr_api.cpp +++ b/source/blender/imbuf/intern/openexr/openexr_api.cpp @@ -451,7 +451,7 @@ void IMB_exr_begin_write(void *handle, char *filename, int width, int height, in openexr_header_compression(&header, compress); /* header.lineOrder() = DECREASING_Y; this crashes in windows for file read! */ - header.insert ("BlenderMultiChannel", StringAttribute ("Blender V2.43")); + header.insert ("BlenderMultiChannel", StringAttribute ("Blender V2.43 and newer")); data->ofile = new OutputFile(filename, header); } -- cgit v1.2.3