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>2012-12-19 19:02:51 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-19 19:02:51 +0400
commit9f9296761c3ac156ed629504b8ffeaae2b845165 (patch)
tree5a64c52f2e2dabdcfdd6e7c8b7b8a3c2a7832a1a /source/blender/blenkernel
parent17c5c9935c5c8d17283fb25a1bfdf0d230698834 (diff)
patch [#33306] Default file format: PNG, 90%
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/image.c b/source/blender/blenkernel/intern/image.c
index 7f0475cf155..f3cdf11d664 100644
--- a/source/blender/blenkernel/intern/image.c
+++ b/source/blender/blenkernel/intern/image.c
@@ -937,7 +937,7 @@ int BKE_imtype_to_ftype(const char imtype)
return RADHDR;
#endif
else if (imtype == R_IMF_IMTYPE_PNG)
- return PNG;
+ return PNG | 90;
#ifdef WITH_DDS
else if (imtype == R_IMF_IMTYPE_DDS)
return DDS;