diff options
Diffstat (limited to 'src/r_defs.h')
-rw-r--r-- | src/r_defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/r_defs.h b/src/r_defs.h index e5bbb2df..4e0d85b7 100644 --- a/src/r_defs.h +++ b/src/r_defs.h @@ -288,7 +288,7 @@ typedef struct { byte topdelta; // -1 is the last post in a column byte length; // length data bytes follows -} post_t; +} PACKEDATTR post_t; // column_t is a list of 0 or more post_t, (byte)-1 terminated typedef post_t column_t; @@ -363,7 +363,7 @@ typedef struct short topoffset; // pixels below the origin int columnofs[8]; // only [width] used // the [0] is &columnofs[width] -} patch_t; +} PACKEDATTR patch_t; |