diff --git a/src/ChangeLog b/src/ChangeLog index 22fb76c4c..feac1b439 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2002-07-14 Pavel Roskin + * color.c [USE_NCURSES]: Eliminate division by COLOR, it's 0 in + black and white mode. + * slint.c: Move functions for allocating color pairs ... * color.c: ... here. Implement ncurses equivalents. Rename init_pair() to mc_init_pair() and keep tack of max_index with diff --git a/src/color.c b/src/color.c index a48937e74..d6dbfcffe 100644 --- a/src/color.c +++ b/src/color.c @@ -42,8 +42,8 @@ int dialog_colors [4]; # define color_map_fg(n) color_map[n].fg # define color_map_bg(n) color_map[n].bg #else -# define color_map_fg(n) (color_map[n].fg % COLORS) -# define color_map_bg(n) (color_map[n].bg % COLORS) +# define color_map_fg(n) (color_map[n].fg & COLOR_WHITE) +# define color_map_bg(n) (color_map[n].bg & COLOR_WHITE) #endif struct colorpair { @@ -397,8 +397,8 @@ try_alloc_color_pair (char *fg, char *bg) get_color (bg, &bg_index); bold_attr = fg_index & A_BOLD; - fg_index = fg_index % COLORS; - bg_index = bg_index % COLORS; + fg_index = fg_index & COLOR_WHITE; + bg_index = bg_index & COLOR_WHITE; p->index = alloc_color_pair (fg_index, bg_index); attr_pairs [p->index] = bold_attr;