(svn r8889) -Fix (r8880): a CursorID is not a SpriteID.
authorrubidium
Sat, 24 Feb 2007 22:35:42 +0000
changeset 6146 179f7480cf6b
parent 6145 c839ab950ecc
child 6147 ee050ca3889f
(svn r8889) -Fix (r8880): a CursorID is not a SpriteID.
src/gfx.h
--- a/src/gfx.h	Sat Feb 24 22:01:18 2007 +0000
+++ b/src/gfx.h	Sat Feb 24 22:35:42 2007 +0000
@@ -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
 };