summaryrefslogtreecommitdiff
path: root/src/newgrf.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-07-11 15:03:29 +0000
committerrubidium <rubidium@openttd.org>2007-07-11 15:03:29 +0000
commit79d04412b051c0350e9885b6d94d56bf0d251037 (patch)
tree1722ab0a55cf1ae1d36b67ccd3be22083d15d653 /src/newgrf.cpp
parent8d4b7ac33b3447896b0d4e5f0bbb2548b445a2f1 (diff)
downloadopenttd-79d04412b051c0350e9885b6d94d56bf0d251037.tar.xz
(svn r10508) -Codechange: allow customizable animation schemes for industries.
Diffstat (limited to 'src/newgrf.cpp')
-rw-r--r--src/newgrf.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp
index 8de606364..f7bce1cb9 100644
--- a/src/newgrf.cpp
+++ b/src/newgrf.cpp
@@ -1765,19 +1765,19 @@ static bool IndustrytilesChangeInfo(uint indtid, int numinfo, int prop, byte **b
break;
case 0x0F: // Animation information
- grf_load_word(&buf); // TODO
+ tsp->animation_info = grf_load_word(&buf);
break;
case 0x10: // Animation speed
- grf_load_byte(&buf); // TODO
+ tsp->animation_speed = grf_load_byte(&buf);
break;
case 0x11: // Triggers for callback 25
- grf_load_byte(&buf); // TODO
+ tsp->animation_triggers = grf_load_byte(&buf);
break;
case 0x12: // Special flags
- grf_load_byte(&buf); // TODO
+ tsp->animation_special_flags = grf_load_byte(&buf);
break;
default: