summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gfx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gfx.h b/src/gfx.h
index 16704c5c6..ab7a1c1ee 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
};