fixed my latest change.

2002-09-14  Sven Neumann  <sven@gimp.org>

	* gdk/gdkpixbuf-drawable.c: fixed my latest change.
This commit is contained in:
Sven Neumann 2002-09-14 17:10:49 +00:00 committed by Sven Neumann
parent 11b366a646
commit 3f01e7e533
7 changed files with 25 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-09-14 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: fixed my latest change.
2002-09-13 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: use the most significant bits of the

View File

@ -1,3 +1,7 @@
2002-09-14 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: fixed my latest change.
2002-09-13 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: use the most significant bits of the

View File

@ -1,3 +1,7 @@
2002-09-14 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: fixed my latest change.
2002-09-13 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: use the most significant bits of the

View File

@ -1,3 +1,7 @@
2002-09-14 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: fixed my latest change.
2002-09-13 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: use the most significant bits of the

View File

@ -1,3 +1,7 @@
2002-09-14 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: fixed my latest change.
2002-09-13 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: use the most significant bits of the

View File

@ -1,3 +1,7 @@
2002-09-14 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: fixed my latest change.
2002-09-13 Sven Neumann <sven@gimp.org>
* gdk/gdkpixbuf-drawable.c: use the most significant bits of the

View File

@ -345,7 +345,7 @@ rgb8a (GdkImage *image,
remap[xx] = 0xff
| (colormap->colors[xx].red & 0xff00) << 16
| (colormap->colors[xx].green & 0xff00) << 8
| (colormap->colors[xx].blue & 0xff00));
| (colormap->colors[xx].blue & 0xff00);
#endif
}