diff --git a/utils_curses.c b/utils_curses.c index e537a7a..06ed60f 100755 --- a/utils_curses.c +++ b/utils_curses.c @@ -37,9 +37,13 @@ for(row=maxR; row>=0; row--){ color++; changeCol = color % 6; - if (!(row > l && row < maxR-l/3)) { // center of the screen + if ((row > l && row < maxR-l/3)) { // center of the screen color_set(changeCol, NULL); mvaddch(row, col, SHARP); + } else { + color_set(changeCol, NULL); + mvaddch(row, col, HEAVY); + } } }