From 330f76b4f6aae31ed0826a3f3d7c4a02df5a79f2 Mon Sep 17 00:00:00 2001 From: ayin Date: Mon, 26 Nov 2007 10:18:28 +0000 Subject: [PATCH] Micro-optimization. --- src/main.C | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.C b/src/main.C index 066b0b9e..09c8e00f 100644 --- a/src/main.C +++ b/src/main.C @@ -983,8 +983,7 @@ rxvt_term::set_window_color (int idx, const char *color) if (i >= 8 && i <= 15) { /* bright colors */ - i -= 8; - pix_colors_focused[idx] = pix_colors_focused[minBrightCOLOR + i]; + pix_colors_focused[idx] = pix_colors_focused[minBrightCOLOR + i - 8]; goto done; } -- 2.34.1