From: Carl Hetherington Date: Sun, 28 Mar 2021 22:55:50 +0000 (+0000) Subject: Tread .psd as an image file. X-Git-Tag: v2.14.48~1 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=eaa7ca31ab84fdbdfede784a3d1a826ad6fb1c4f Tread .psd as an image file. --- diff --git a/src/lib/util.cc b/src/lib/util.cc index a09e6859f..d36ae744f 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -603,7 +603,7 @@ valid_image_file (boost::filesystem::path f) ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" || ext == ".png" || ext == ".bmp" || ext == ".tga" || ext == ".dpx" || ext == ".j2c" || ext == ".j2k" || ext == ".jp2" || ext == ".exr" || - ext == ".jpf" + ext == ".jpf" || ext == ".psd" ); }