# HG changeset patch # User rubidium # Date 1172356542 0 # Node ID 97fbbda2bb0870ebe3e636c7d63c533b1716a746 # Parent 1930fc7850787caf77db388474896e66e0345a45 (svn r8889) -Fix (r8880): a CursorID is not a SpriteID. diff --git a/src/gfx.h b/src/gfx.h --- a/src/gfx.h +++ b/src/gfx.h @@ -101,7 +101,7 @@ /** 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 };