forked from mirror/OpenTTD
(svn r1031) -Fix: [Network] The unique-id was not as unique as I though it was..
This commit is contained in:
@@ -1130,7 +1130,7 @@ void NetworkGenerateUniqueId()
|
|||||||
char coding_string[NETWORK_NAME_LENGTH];
|
char coding_string[NETWORK_NAME_LENGTH];
|
||||||
int di;
|
int di;
|
||||||
|
|
||||||
snprintf(coding_string, sizeof(coding_string), "%d%s%d", InteractiveRandom(), "OpenTTD Unique ID", InteractiveRandom());
|
snprintf(coding_string, sizeof(coding_string), "%d%s", (uint)Random(), "OpenTTD Unique ID");
|
||||||
|
|
||||||
/* Generate the MD5 hash */
|
/* Generate the MD5 hash */
|
||||||
md5_init(&state);
|
md5_init(&state);
|
||||||
|
Reference in New Issue
Block a user