stamp size must be a multiplier, not actual value

This commit is contained in:
Albert Cahalan 2009-11-08 03:25:12 +00:00
parent cba6b6894d
commit e318a23c4f

View file

@ -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;