From 98ffd6f00cc2c23106d673804d0855904d6a6a9a Mon Sep 17 00:00:00 2001 From: helixhorned Date: Thu, 26 Jan 2012 21:58:25 +0000 Subject: [PATCH] Rearrange 'struct hicreplc_t' members so that no padding is inserted on x64. git-svn-id: https://svn.eduke32.com/eduke32@2282 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/build/include/hightile.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polymer/eduke32/build/include/hightile.h b/polymer/eduke32/build/include/hightile.h index ff0f57a0c..0d6ec01fe 100644 --- a/polymer/eduke32/build/include/hightile.h +++ b/polymer/eduke32/build/include/hightile.h @@ -8,10 +8,10 @@ struct hicskybox_t { typedef struct hicreplc_t { struct hicreplc_t *next; - char palnum, ignore, flags, filler; char *filename; - float alphacut, xscale, yscale, specpower, specfactor; struct hicskybox_t *skybox; + char palnum, ignore, flags, filler; + float alphacut, xscale, yscale, specpower, specfactor; } hicreplctyp; extern palette_t hictinting[MAXPALOOKUPS];