From: Dana Jansens Date: Tue, 29 May 2007 03:37:01 +0000 (+0000) Subject: let gcc do the math. it should be compiler optimized away X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=13f812174e8c9257a7618b769afd31eb2fa2d7b4;p=chaz%2Fopenbox let gcc do the math. it should be compiler optimized away --- diff --git a/openbox/focus_cycle_popup.c b/openbox/focus_cycle_popup.c index 0bfe9b6b..0ac274dd 100644 --- a/openbox/focus_cycle_popup.c +++ b/openbox/focus_cycle_popup.c @@ -424,7 +424,7 @@ static void popup_render(ObFocusCyclePopup *p, const ObClient *c) p->a_icon->texture[0].data.rgba.height = icon->height; if (target->client->iconic) /* 7/16 alpha */ - p->a_icon->texture[0].data.rgba.alpha = (0xff>>1) - (0xff>>4); + p->a_icon->texture[0].data.rgba.alpha = 0xff*7/16; else p->a_icon->texture[0].data.rgba.alpha = 0xff; p->a_icon->texture[0].data.rgba.data = icon->data;