From: Derek Foreman Date: Thu, 23 Jan 2003 05:58:56 +0000 (+0000) Subject: fixed incredibly embarassing cut'n'paste error in highlight X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=bf3a40ad66d20b85c21233fce909c22f8dcf0bf8;p=chaz%2Fopenbox fixed incredibly embarassing cut'n'paste error in highlight --- diff --git a/otk/truerendercontrol.cc b/otk/truerendercontrol.cc index 6a74007f..cc46ebd9 100644 --- a/otk/truerendercontrol.cc +++ b/otk/truerendercontrol.cc @@ -205,8 +205,8 @@ void TrueRenderControl::highlight(pixel32 *x, pixel32 *y, bool raised) const b = *up & 0xFF; b += b >> 1; if (r > 255) r = 255; - if (g > 255) r = 255; - if (b > 255) r = 255; + if (g > 255) g = 255; + if (b > 255) b = 255; *up = (r << 16) + (g << 8) + b; r = (*down >> 16) & 0xFF;