mirror of https://github.com/OpenTTD/OpenTTD
(svn r6086) -Fix: InteractiveRandom was not seeded properly resulting in the dedicated server always generating the same map. Thanks to the #openttdcoop team for detecting.
parent
e9443f0d7a
commit
d14ac4478d
3
os2.c
3
os2.c
|
@ -125,8 +125,7 @@ int CDECL main(int argc, char* argv[])
|
||||||
// change the working directory to enable doubleclicking in UIs
|
// change the working directory to enable doubleclicking in UIs
|
||||||
ChangeWorkingDirectory(argv[0]);
|
ChangeWorkingDirectory(argv[0]);
|
||||||
|
|
||||||
_random_seeds[0][1] = _random_seeds[0][0] = time(NULL);
|
_random_seeds[1][1] = _random_seeds[1][0] = _random_seeds[0][1] = _random_seeds[0][0] = time(NULL);
|
||||||
|
|
||||||
|
|
||||||
return ttd_main(argc, argv);
|
return ttd_main(argc, argv);
|
||||||
}
|
}
|
||||||
|
|
2
unix.c
2
unix.c
|
@ -151,7 +151,7 @@ int CDECL main(int argc, char* argv[])
|
||||||
ChangeWorkingDirectory(argv[0]);
|
ChangeWorkingDirectory(argv[0]);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
_random_seeds[0][1] = _random_seeds[0][0] = time(NULL);
|
_random_seeds[1][1] = _random_seeds[1][0] = _random_seeds[0][1] = _random_seeds[0][0] = time(NULL);
|
||||||
SeedMT(_random_seeds[0][1]);
|
SeedMT(_random_seeds[0][1]);
|
||||||
|
|
||||||
signal(SIGPIPE, SIG_IGN);
|
signal(SIGPIPE, SIG_IGN);
|
||||||
|
|
4
win32.c
4
win32.c
|
@ -859,8 +859,8 @@ int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
|
||||||
_set_error_mode(_OUT_TO_MSGBOX); // force assertion output to messagebox
|
_set_error_mode(_OUT_TO_MSGBOX); // force assertion output to messagebox
|
||||||
|
|
||||||
// setup random seed to something quite random
|
// setup random seed to something quite random
|
||||||
_random_seeds[0][0] = GetTickCount();
|
_random_seeds[1][0] = _random_seeds[0][0] = GetTickCount();
|
||||||
_random_seeds[0][1] = _random_seeds[0][0] * 0x1234567;
|
_random_seeds[1][1] = _random_seeds[0][1] = _random_seeds[0][0] * 0x1234567;
|
||||||
SeedMT(_random_seeds[0][0]);
|
SeedMT(_random_seeds[0][0]);
|
||||||
|
|
||||||
argc = ParseCommandLine(GetCommandLine(), argv, lengthof(argv));
|
argc = ParseCommandLine(GetCommandLine(), argv, lengthof(argv));
|
||||||
|
|
Loading…
Reference in New Issue