From 67f385ded8dfe4aca7cdd61ec3054dc1fb9564b1 Mon Sep 17 00:00:00 2001 From: darkvater Date: Thu, 23 Sep 2004 21:44:36 +0000 Subject: [PATCH] (svn r316) -Fix: not +7 (Tron) --- ttd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ttd.c b/ttd.c index 215aa09fbd..e27b15cb2e 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); - res[1] = (strtoul(t+1, NULL, 0) + 7); + res[0] = strtoul(s, NULL, 0); + res[1] = strtoul(t + 1, NULL, 0); } int ttd_main(int argc, char* argv[])