(svn r316) -Fix: not +7 (Tron)
authordarkvater
Thu, 23 Sep 2004 21:44:36 +0000
changeset 310 5809005c6650
parent 309 99347092f402
child 311 08385644689e
(svn r316) -Fix: not +7 (Tron)
ttd.c
--- a/ttd.c	Thu Sep 23 21:39:55 2004 +0000
+++ b/ttd.c	Thu Sep 23 21:44:36 2004 +0000
@@ -472,8 +472,8 @@
 		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[])