summaryrefslogtreecommitdiff
path: root/src/newgrf_animation_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-08-28 19:13:20 +0000
committerrubidium <rubidium@openttd.org>2010-08-28 19:13:20 +0000
commit2d10b0f11d0300eebabccb48399f35c9acb55be0 (patch)
tree151980dffce693efd4481c1728c9db1b7ea89de0 /src/newgrf_animation_type.h
parent41a80490befda13df13115f3e272d05247bcf4a2 (diff)
downloadopenttd-2d10b0f11d0300eebabccb48399f35c9acb55be0.tar.xz
(svn r20669) -Codechange: trigger the whole object every 256 ticks instead of every 250 ticks
Diffstat (limited to 'src/newgrf_animation_type.h')
-rw-r--r--src/newgrf_animation_type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_animation_type.h b/src/newgrf_animation_type.h
index feb2bdfd8..660cec990 100644
--- a/src/newgrf_animation_type.h
+++ b/src/newgrf_animation_type.h
@@ -57,7 +57,7 @@ enum AirpAnimationTrigger {
enum ObjectAnimationTrigger {
OAT_BUILT, ///< Triggered when the object is built (for all tiles at the same time).
OAT_TILELOOP, ///< Triggered in the periodic tile loop.
- OAT_250_TICKS, ///< Triggered every 250 ticks (for all tiles at the same time).
+ OAT_256_TICKS, ///< Triggered every 256 ticks (for all tiles at the same time).
};
#endif /* NEWGRF_ANIMATION_TYPE_H */