X-Git-Url: http://git.rohieb.name/hackover2013-badge-firmware.git/blobdiff_plain/36890cbce498784c05cd591b41e16b5c69f6f29e..c672ffeb5b298b4b8580e24916da2c80b2518ac2:/badge/jumpnrun/tiles.h diff --git a/badge/jumpnrun/tiles.h b/badge/jumpnrun/tiles.h index efc0161..8e47800 100644 --- a/badge/jumpnrun/tiles.h +++ b/badge/jumpnrun/tiles.h @@ -22,7 +22,7 @@ enum { typedef struct jumpnrun_tile_position { int16_t x; int8_t y; -} jumpnrun_tile_position; +} __attribute__((packed)) jumpnrun_tile_position; typedef struct jumpnrun_tile_type { uint8_t lethal_sides; @@ -32,7 +32,7 @@ typedef struct jumpnrun_tile_type { typedef struct jumpnrun_tile { jumpnrun_tile_position pos; uint8_t type; -} jumpnrun_tile; +} __attribute__((packed)) jumpnrun_tile; typedef struct jumpnrun_tile_range { uint16_t first;