From: Mischa POSLAWSKY Date: Sun, 11 Mar 2007 14:24:47 +0000 (+0100) Subject: code cosmetics X-Git-Url: http://git.shiar.nl/netris.git/commitdiff_plain/ea451d0eb29a09293ec16cd0f1f1d8b60424f101 code cosmetics --- diff --git a/curses.c b/curses.c index b60433e..b1604b0 100644 --- a/curses.c +++ b/curses.c @@ -403,8 +403,7 @@ static void block_draw_2(int y, int x, unsigned char type) else { #ifdef HAVE_NCURSES if (Sets.standout) { - if (haveColor) attrset(COLOR_PAIR(type & 15)); - else attrset(A_REVERSE); + attrset(haveColor ? COLOR_PAIR(type & 15) : A_REVERSE); } #endif switch (Sets.drawstyle) { @@ -471,13 +470,11 @@ static void block_draw_1(int y, int x, unsigned char type) if (type == BT_none) addch(' '); else if (type == BT_shadow) addch(':'); else { - if (Sets.standout) { #ifdef HAVE_NCURSES - if (haveColor) - attrset(COLOR_PAIR(type & 15)); - else attrset(A_REVERSE); -#endif + if (Sets.standout) { + attrset(haveColor ? COLOR_PAIR(type & 15) : A_REVERSE); } +#endif if ((type & 192) == 64) addch('['); else if ((type & 192) == 128)