diff options
| -rw-r--r-- | frontends/curses/curses_ui.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/curses/curses_ui.c b/frontends/curses/curses_ui.c index 0ff0758..096f294 100644 --- a/frontends/curses/curses_ui.c +++ b/frontends/curses/curses_ui.c @@ -132,15 +132,15 @@ void draw_board() { attron(COLOR_PAIR(game.current.t) | A_BOLD);
mvaddstr(draw_y, draw_x, BLOCK);
- if ((default_matrices[game.piece_queue[game.current_index]][y]>>(3 - x))&1) {
- mvaddstr(6 + y, (x * 2) + 36, BLOCK);
- }
attroff(COLOR_PAIR(game.current.t) | A_BOLD);
attron(A_DIM);
mvaddstr(ghost_y, draw_x, BLOCK);
attroff(A_DIM);
}
+ if ((default_matrices[game.piece_queue[game.current_index]][y]>>(3 - x))&1) {
+ mvaddstr(6 + y, (x * 2) + 36, BLOCK);
+ }
}
}
|