changeset 6146:97fbbda2bb08 draft

(svn r8889) -Fix (r8880): a CursorID is not a SpriteID.
author rubidium <rubidium@openttd.org>
date Sat, 24 Feb 2007 22:35:42 +0000
parents 1930fc785078
children a7aecaae3414
files src/gfx.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
 };