From 5aaff3b5a1bb6dc7a4bc23e25f8d74086437435b Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 24 Feb 2007 22:35:42 +0000 Subject: [PATCH] (svn r8889) -Fix (r8880): a CursorID is not a SpriteID. --- src/gfx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gfx.h b/src/gfx.h index 16704c5c60..ab7a1c1eee 100644 --- a/src/gfx.h +++ b/src/gfx.h @@ -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 };