summaryrefslogtreecommitdiff
path: root/src/spritecache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/spritecache.h')
-rw-r--r--src/spritecache.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/spritecache.h b/src/spritecache.h
index 0b1a08b19..02be3b4ca 100644
--- a/src/spritecache.h
+++ b/src/spritecache.h
@@ -16,11 +16,11 @@
/** Data structure describing a sprite. */
struct Sprite {
- byte height; ///< Height of the sprite.
- uint16 width; ///< Width of the sprite.
- int16 x_offs; ///< Number of pixels to shift the sprite to the right.
- int16 y_offs; ///< Number of pixels to shift the sprite downwards.
- byte data[]; ///< Sprite data.
+ uint16 height; ///< Height of the sprite.
+ uint16 width; ///< Width of the sprite.
+ int16 x_offs; ///< Number of pixels to shift the sprite to the right.
+ int16 y_offs; ///< Number of pixels to shift the sprite downwards.
+ byte data[]; ///< Sprite data.
};
extern uint _sprite_cache_size;