diff options
author | dominik <dominik@openttd.org> | 2005-01-03 11:45:11 +0000 |
---|---|---|
committer | dominik <dominik@openttd.org> | 2005-01-03 11:45:11 +0000 |
commit | 60ba9c328085844e5c6ffe51bf5819999b2e59d8 (patch) | |
tree | 186c7e397e621f8938d7a9489aff5ee3d75e292f | |
parent | 7e89cd8643b7fc717cf4695bbb4fc83488eaa302 (diff) | |
download | openttd-60ba9c328085844e5c6ffe51bf5819999b2e59d8.tar.xz |
(svn r1333) Fix: No crash when creating a game with American town names any more
-rw-r--r-- | namegen.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -89,7 +89,7 @@ static byte MakeEnglishAdditionalTownName(byte *buf, uint32 seed) } else { - strcat(buf, name_additional_english_1b3b[GetNumberBasedOnSeed(12, lengthof(name_additional_english_1b3a), seed)]); + strcat(buf, name_additional_english_1b3b[GetNumberBasedOnSeed(12, lengthof(name_additional_english_1b3b), seed)]); } } |