We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e037ac0 commit 5ccc62fCopy full SHA for 5ccc62f
1 file changed
renderdoccmd/renderdoccmd.cpp
@@ -270,6 +270,8 @@ struct ThumbCommand : public Command
270
type = FileType::TGA;
271
else if(dot != NULL && strstr(dot, "bmp"))
272
type = FileType::BMP;
273
+ else if(dot != NULL && strstr(dot, "jpg"))
274
+ type = FileType::JPG;
275
else
276
std::cerr << "Couldn't guess format from '" << outfile << "', defaulting to jpg."
277
<< std::endl;
0 commit comments