Fix typo.

SVN revision: 26097
This commit is contained in:
sebastid 2006-09-24 13:24:28 +00:00 committed by sebastid
parent 8b641a9035
commit 7b9f59d959
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ evas_image_load_file_xpm(RGBA_Image *im, const char *file, const char *key, int
r = (unsigned char)cmap[lookup[lu1][lu2]].r;
g = (unsigned char)cmap[lookup[lu1][lu2]].g;
b = (unsigned char)cmap[lookup[lu1][lu2]].b;
*ptr = (0xff << 24) |ky (r << 16) | (g << 8) | b;
*ptr = (0xff << 24) | (r << 16) | (g << 8) | b;
ptr++;
count++;
}