Fix 32-bit unsigned integer shift

This commit is contained in:
Bert Münnich 2015-12-26 10:14:35 +01:00
parent b32aefce3a
commit 4db3029bc6
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
VERSION := git-20151225 VERSION := git-20151226
PREFIX := /usr/local PREFIX := /usr/local
MANPREFIX := $(PREFIX)/share/man MANPREFIX := $(PREFIX)/share/man

View File

@ -227,7 +227,7 @@ bool img_load_gif(img_t *img, const fileinfo_t *file)
r = cmap->Colors[rows[i-y][j-x]].Red; r = cmap->Colors[rows[i-y][j-x]].Red;
g = cmap->Colors[rows[i-y][j-x]].Green; g = cmap->Colors[rows[i-y][j-x]].Green;
b = cmap->Colors[rows[i-y][j-x]].Blue; b = cmap->Colors[rows[i-y][j-x]].Blue;
*ptr = 0xff << 24 | r << 16 | g << 8 | b; *ptr = 0xffu << 24 | r << 16 | g << 8 | b;
} }
ptr++; ptr++;
} }