(svn r8889) -Fix (r8880): a CursorID is not a SpriteID.

This commit is contained in:
rubidium 2007-02-24 22:35:42 +00:00
parent 5dcd88c59c
commit 5aaff3b5a1
1 changed files with 1 additions and 1 deletions

View File

@ -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
};