mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-07 06:39:08 +00:00
(svn r316) -Fix: not +7 (Tron)
This commit is contained in:
parent
cee5cd6cc7
commit
67f385ded8
4
ttd.c
4
ttd.c
@ -472,8 +472,8 @@ void ParseResolution(int res[2], char *s)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
res[0] = (strtoul(s, NULL, 0) + 7);
|
res[0] = strtoul(s, NULL, 0);
|
||||||
res[1] = (strtoul(t+1, NULL, 0) + 7);
|
res[1] = strtoul(t + 1, NULL, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int ttd_main(int argc, char* argv[])
|
int ttd_main(int argc, char* argv[])
|
||||||
|
Loading…
Reference in New Issue
Block a user