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
commitd1ef87f914b6c140ab67179d7b95074b7fdf2f1b (patch)
tree1722ab0a55cf1ae1d36b67ccd3be22083d15d653 /src/newgrf.cpp
parent00afab46abf577726c4b4195ac3fcc57b769e43c (diff)
downloadopenttd-d1ef87f914b6c140ab67179d7b95074b7fdf2f1b.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: