From: Steinar H. Gunderson Date: Mon, 9 Jun 2008 02:11:11 +0000 (+0200) Subject: Fix another bug relating to the "-1x-1" (ie. original size, but still with X-Git-Url: https://git.sesse.net/?p=pr0n;a=commitdiff_plain;h=009d01329a0d7a1b0469a8d051321c155eb58999 Fix another bug relating to the "-1x-1" (ie. original size, but still with pr0n processing) size. --- diff --git a/perl/Sesse/pr0n/Common.pm b/perl/Sesse/pr0n/Common.pm index 4dca96a..6f45d55 100644 --- a/perl/Sesse/pr0n/Common.pm +++ b/perl/Sesse/pr0n/Common.pm @@ -408,7 +408,7 @@ sub make_mipmap { my $large_enough = 1; for my $i (0..($#res/2)) { my ($xres, $yres) = ($res[$i*2], $res[$i*2+1]); - if ($xres > $new_mmwidth || $yres > $new_mmheight) { + if ($xres == -1 || $xres > $new_mmwidth || $yres > $new_mmheight) { $large_enough = 0; last; }