diff --git a/source/blender/blenkernel/intern/image.c b/source/blender/blenkernel/intern/image.c index 766c6dc1d6a..976b525d841 100644 --- a/source/blender/blenkernel/intern/image.c +++ b/source/blender/blenkernel/intern/image.c @@ -431,6 +431,7 @@ int BKE_write_ibuf(ImBuf *ibuf, char *name, int imtype, int subimtype, int quali else if ELEM(imtype, R_JPEG90, R_MOVIE) { if(quality < 10) quality= 90; ibuf->ftype= JPG|quality; + if(ibuf->depth==32) ibuf->depth= 24; /* unsupported feature only confuses other s/w */ } else ibuf->ftype= TGA;