From e318a23c4fdf4cd80330406a98385bcc1c7aea07 Mon Sep 17 00:00:00 2001 From: Albert Cahalan Date: Sun, 8 Nov 2009 03:25:12 +0000 Subject: [PATCH] stamp size must be a multiplier, not actual value --- src/tuxpaint.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 8e087fc3b..e196ca6fc 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -18898,6 +18898,7 @@ static void parse_options(char *filename) } else if (strstr(str, "stampsize=") == str) { + // FIXME: needs to be a scaling factor stamp_size_override = atoi(str + 10); if (stamp_size_override > 10) stamp_size_override = 10;