From: Dana Jansens Date: Sun, 14 Sep 2003 06:43:16 +0000 (+0000) Subject: use the values passed to the function X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=960ce01f71e1973fe6f35170f1b55bce464d50dc;p=chaz%2Fopenbox use the values passed to the function --- diff --git a/render/theme.c b/render/theme.c index e658d873..ac80d19b 100644 --- a/render/theme.c +++ b/render/theme.c @@ -1291,11 +1291,9 @@ static RrPixel32* read_c_image(gint width, gint height, const guint8 *data) RrPixel32 *im, *p; gint i; - p = im = g_memdup(OB_DEFAULT_ICON_pixel_data, - OB_DEFAULT_ICON_WIDTH * OB_DEFAULT_ICON_HEIGHT * - sizeof(RrPixel32)); + p = im = g_memdup(data, width * height * sizeof(RrPixel32)); - for (i = 0; i < OB_DEFAULT_ICON_WIDTH*OB_DEFAULT_ICON_HEIGHT; ++i) { + for (i = 0; i < width * height; ++i) { guchar a = ((*p >> 24) & 0xff); guchar b = ((*p >> 16) & 0xff); guchar g = ((*p >> 8) & 0xff);