(svn r8889) -Fix (r8880): a CursorID is not a SpriteID.
authorrubidium
Sat, 24 Feb 2007 22:35:42 +0000
changeset 6472 ba7633d318bb
parent 6471 d0e79064c324
child 6473 03480a0f016e
(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
 };