diff options
author | rubidium <rubidium@openttd.org> | 2007-02-24 22:35:42 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-02-24 22:35:42 +0000 |
commit | bee20f6abc2294317fb2a4c618efca0b0f9d38e4 (patch) | |
tree | 9f26ecf5a63fb97d46a2646ca06ec980cb7b1f00 /src | |
parent | 51ce6fe672e4c4b1596d5ee7e4135a7dee572446 (diff) | |
download | openttd-bee20f6abc2294317fb2a4c618efca0b0f9d38e4.tar.xz |
(svn r8889) -Fix (r8880): a CursorID is not a SpriteID.
Diffstat (limited to 'src')
-rw-r--r-- | src/gfx.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ typedef struct Rect { /** A single sprite of a list of animated cursors */ struct AnimCursor { - static const SpriteID LAST = MAX_UVALUE(CursorID); + static const CursorID LAST = MAX_UVALUE(CursorID); CursorID sprite; ///< Must be set to LAST_ANIM when it is the last sprite of the loop byte display_time; ///< Amount of ticks this sprite will be shown }; |