diff options
author | truelight <truelight@openttd.org> | 2004-12-12 17:47:50 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2004-12-12 17:47:50 +0000 |
commit | c8452c51957c6cbcaf860d077de02e1ee35c3286 (patch) | |
tree | b676ef42aecf8646bd31425bdb9510b63d58b00f | |
parent | 6d8a0c52f5e2de255a445f65765b87dea36d662e (diff) | |
download | openttd-c8452c51957c6cbcaf860d077de02e1ee35c3286.tar.xz |
(svn r1031) -Fix: [Network] The unique-id was not as unique as I though it was..
-rw-r--r-- | network.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1130,7 +1130,7 @@ void NetworkGenerateUniqueId() char coding_string[NETWORK_NAME_LENGTH]; 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 */ md5_init(&state); |