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>2010-08-21 12:22:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-21 12:22:47 +0400
commit76eeba360805e956b3db5e969b64270188e8fa89 (patch)
tree8aac4ca9d692eef6454d9f5ff400af97159cab90 /source/blender/imbuf/intern/util.c
parent87eaf5759320b87c4e526597618d936a430e6a62 (diff)
bugfix [#23419] FILE OPEN: OpenEXR default extension .EXR / .exr is filtered out
Diffstat (limited to 'source/blender/imbuf/intern/util.c')
-rw-r--r--source/blender/imbuf/intern/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c
index 3a642e1256c..cd447e5e43a 100644
--- a/source/blender/imbuf/intern/util.c
+++ b/source/blender/imbuf/intern/util.c
@@ -77,7 +77,7 @@ const char *imb_ext_image[] = {
#ifdef WITH_TIFF
".tif", ".tiff", ".tx",
#endif
-#ifdef WITH_BF_OPENJPEG
+#ifdef WITH_OPENJPEG
".jp2",
#endif
#ifdef WITH_HDR
@@ -90,7 +90,7 @@ const char *imb_ext_image[] = {
".dpx",
".cin",
#endif
-#ifdef WITH_BF_OPENEXR
+#ifdef WITH_OPENEXR
".exr",
#endif
NULL};