(svn r315) -Fix: starting with -r option allows all resolutions (including 666x666) (t r o n)
authordarkvater
Thu, 23 Sep 2004 21:39:55 +0000
changeset 309 99347092f402
parent 308 1d39f4e3eab1
child 310 5809005c6650
(svn r315) -Fix: starting with -r option allows all resolutions (including 666x666) (t r o n)
ttd.c
--- a/ttd.c	Thu Sep 23 21:20:38 2004 +0000
+++ b/ttd.c	Thu Sep 23 21:39:55 2004 +0000
@@ -472,8 +472,8 @@
 		return;
 	}
 
-	res[0] = (strtoul(s, NULL, 0) + 7) & ~7;
-	res[1] = (strtoul(t+1, NULL, 0) + 7) & ~7;
+	res[0] = (strtoul(s, NULL, 0) + 7);
+	res[1] = (strtoul(t+1, NULL, 0) + 7);
 }
 
 int ttd_main(int argc, char* argv[])