Fix more typo.

SVN revision: 26100
This commit is contained in:
sebastid 2006-09-24 13:31:19 +00:00 committed by sebastid
parent fc717d365f
commit b7029d1b60
1 changed files with 2 additions and 2 deletions

View File

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