summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/sprite.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sprite.h b/src/sprite.h
index 4d073ecc3..e2654c2af 100644
--- a/src/sprite.h
+++ b/src/sprite.h
@@ -34,10 +34,10 @@ struct DrawTileSprites {
struct DrawBuildingsTileStruct {
PalSpriteID ground;
PalSpriteID building;
- byte subtile_x:4;
- byte subtile_y:4;
- byte width:4;
- byte height:4;
+ byte subtile_x;
+ byte subtile_y;
+ byte width;
+ byte height;
byte dz;
byte draw_proc; /* this allows to specify a special drawing procedure.*/
};