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>2008-07-14 14:26:11 +0400
committerTon Roosendaal <ton@blender.org>2008-07-14 14:26:11 +0400
commit0c23d0c2ad9da1342bf35207dcc7b184f1e48c2a (patch)
tree7f9b54f13afef7261c1a8cf4b02c4a9cd5b96b4f /source/blender/imbuf
parent0022222b05e25e4e332f0cc024184a57a6711201 (diff)
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.
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/openexr/openexr_api.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}