eleminate padding from struct img on 64bit systems (#136)

on 64bit systems this reduces the size of the struct from 104 bytes down
to 96 bytes.

on 32bits system this change shouldn't have any affect.
master
N-R-K 2021-10-28 16:38:32 +06:00 committed by GitHub
parent 7e7eaf08f1
commit f46d30591a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -210,6 +210,9 @@ struct img {
float x;
float y;
Imlib_Color_Modifier cmod;
int gamma;
scalemode_t scalemode;
float zoom;
@ -218,9 +221,6 @@ struct img {
bool aa;
bool alpha;
Imlib_Color_Modifier cmod;
int gamma;
struct {
bool on;
int delay;