8f5f7d8017
PR: ports/163939 Submitted by: maintainer Approved by: gabor (mentor, implicit)
11 lines
369 B
C
11 lines
369 B
C
--- util.c.orig 2012-01-08 16:51:48.245308175 -0600
|
|
+++ util.c 2012-01-08 16:51:52.168309618 -0600
|
|
@@ -3941,7 +3941,7 @@
|
|
#ifdef JPEG
|
|
|
|
unsigned short int *buffer_16bpp;
|
|
-long *buffer_32bpp;
|
|
+uint32_t *buffer_32bpp;
|
|
|
|
static void convert_for_16 (int w, int x, int y, int r, int g, int b) {
|
|
buffer_16bpp [y * w + x] = ((r >> 3) << 11) + ((g >> 2) << 5) + (b >> 3);
|