diff options
author | rubidium <rubidium@openttd.org> | 2010-09-01 19:45:50 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-09-01 19:45:50 +0000 |
commit | 7ee2c31f991b2ddad99e0b19db8b85939e56f9f4 (patch) | |
tree | e0a9d8785d1e6bdfde0b7a3071501c7a6d1bd0f7 /src | |
parent | 5df8e6abcfe1a4dcf1d8c6d574f9d2493c49000c (diff) | |
download | openttd-7ee2c31f991b2ddad99e0b19db8b85939e56f9f4.tar.xz |
(svn r20713) -Fix (r20654): when ignoring action0 object properties, ignore property 13 correctly
Diffstat (limited to 'src')
-rw-r--r-- | src/newgrf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp index 8e1edebe8..7dd07a16f 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -2895,7 +2895,6 @@ static ChangeInfoResult IgnoreObjectProperty(uint prop, ByteReader *buf) case 0x0C: case 0x0D: case 0x12: - case 0x13: case 0x14: case 0x16: buf->ReadByte(); @@ -2904,6 +2903,7 @@ static ChangeInfoResult IgnoreObjectProperty(uint prop, ByteReader *buf) case 0x0A: case 0x10: case 0x11: + case 0x13: case 0x15: buf->ReadWord(); break; |