diff options
author | peter1138 <peter1138@openttd.org> | 2006-04-23 18:37:53 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2006-04-23 18:37:53 +0000 |
commit | af556831a9d959a153af57b604c9ededb4ed2854 (patch) | |
tree | de6c6f5a77204b5c1cf9b58c639bd64e7913e19d | |
parent | b4ba26bce7a546dccc526aca75068a3fbaf6af5f (diff) | |
download | openttd-af556831a9d959a153af57b604c9ededb4ed2854.tar.xz |
(svn r4552) - NewGRF: fix braino... in r4550, new_scheme should true when the version is 7 or higher, not less than 7...
-rw-r--r-- | newgrf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1724,7 +1724,7 @@ static void VehicleNewName(byte *buf, int len) uint16 id; uint16 endid; const char* name; - bool new_scheme = _cur_grffile->grf_version < 7; + bool new_scheme = _cur_grffile->grf_version >= 7; check_length(len, 6, "VehicleNewName"); buf++; |