Fix normal_height when using argument

This was overrided with rotation cause we dont save it
This commit is contained in:
Stacy Harper 2021-08-26 22:17:25 +02:00 committed by John Sullivan
parent 7a512fbca7
commit 3a241c8d2c

2
main.c
View File

@ -434,7 +434,7 @@ main(int argc, char **argv) {
usage(argv[0]);
exit(1);
}
height = atoi(argv[++i]);
height = normal_height = atoi(argv[++i]);
} else if (!strcmp(argv[i], "-L")) {
if (i >= argc - 1) {
usage(argv[0]);