# HG changeset patch # User darkvater # Date 1095975595 0 # Node ID 99347092f402b4f720305ec6c96b7a64f80ced18 # Parent 1d39f4e3eab1286d14197f9b0a4ca201ab0f3924 (svn r315) -Fix: starting with -r option allows all resolutions (including 666x666) (t r o n) diff -r 1d39f4e3eab1 -r 99347092f402 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[])