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
This commit is contained in:
helixhorned 2012-01-26 21:58:25 +00:00
parent 143ec24cb4
commit 98ffd6f00c

View file

@ -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];