Explorar el Código

Fix 32-bit unsigned integer shift

master
Bert Münnich hace 9 años
padre
commit
4db3029bc6
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. +1
    -1
      Makefile
  2. +1
    -1
      image.c

+ 1
- 1
Makefile Ver fichero

@@ -1,4 +1,4 @@
VERSION := git-20151225
VERSION := git-20151226

PREFIX := /usr/local
MANPREFIX := $(PREFIX)/share/man


+ 1
- 1
image.c Ver fichero

@@ -227,7 +227,7 @@ bool img_load_gif(img_t *img, const fileinfo_t *file)
r = cmap->Colors[rows[i-y][j-x]].Red;
g = cmap->Colors[rows[i-y][j-x]].Green;
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++;
}


||||||
x
 
000:0
Cargando…
Cancelar
Guardar