comparison tools/gfxconv.c @ 1890:ee95059b4c18

Oops, fix a blunder left in the refactored scale option parsing.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 25 Jun 2018 17:13:41 +0300
parents ac9784afae27
children 91b80990043c
comparison
equal deleted inserted replaced
1889:ac9784afae27 1890:ee95059b4c18
720 optSpec.scaleY *= tmpUInt; 720 optSpec.scaleY *= tmpUInt;
721 } 721 }
722 error = (sep != 0); 722 error = (sep != 0);
723 } 723 }
724 else 724 else
725 if (sep == 0)
726 {
727 optSpec.scaleX = optSpec.scaleY = tmpUInt;
728 }
729 else
725 error = TRUE; 730 error = TRUE;
726 } 731 }
727 else 732 else
728 error = TRUE; 733 error = TRUE;
729 734