summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spritecache.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/spritecache.h b/spritecache.h
index f1c0a80f7..12e46d6ca 100644
--- a/spritecache.h
+++ b/spritecache.h
@@ -4,9 +4,9 @@
typedef struct Sprite {
byte info;
byte height;
- uint16 width; // LE!
- int16 x_offs; // LE!
- int16 y_offs; // LE!
+ uint16 width;
+ int16 x_offs;
+ int16 y_offs;
byte data[VARARRAY_SIZE];
} Sprite;
assert_compile(sizeof(Sprite) == 8);