Changeset - r6146:870f8339cbff
[Not reviewed]
master
0 1 0
rubidium - 17 years ago 2007-02-24 22:35:42
rubidium@openttd.org
(svn r8889) -Fix (r8880): a CursorID is not a SpriteID.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/gfx.h
Show inline comments
 
@@ -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
 
};
0 comments (0 inline, 0 general)