diff --git a/src/client/menu.c b/src/client/menu.c index 90f82dc2ca044a55ec4a25d9e92bd489795a9cbc..56df5dc44034e8f7c873765558de62010923a403 100644 --- a/src/client/menu.c +++ b/src/client/menu.c @@ -99,7 +99,10 @@ int ShowNCursesUI(void) initscr(); start_color(); use_default_colors(); - init_pair(COLOURPAIR_CANTBUY, COLOR_BLACK, -1); // Not avaliable + init_pair(COLOURPAIR_CANTBUY, 8, -1); // Not available; colour 8 is "bright black" ie grey + // Previously this was COLOR_BLACK + the bold attribute, but + // that is not rendered the same way by all terminals + // ncurses does not have names for bright colours init_pair(COLOURPAIR_SELECTED, COLOR_GREEN, -1); // Selected cbreak(); noecho();