summaryrefslogtreecommitdiff
path: root/ttd.c
diff options
context:
space:
mode:
Diffstat (limited to 'ttd.c')
-rw-r--r--ttd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ttd.c b/ttd.c
index 7043627e8..215aa09fb 100644
--- a/ttd.c
+++ b/ttd.c
@@ -472,8 +472,8 @@ void ParseResolution(int res[2], char *s)
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[])