From: Christian Heller Date: Wed, 11 Mar 2015 21:32:46 +0000 (+0100) Subject: Client: Change look mode cursor visualization. X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=commitdiff_plain;h=0788cbb731a9960ac91cb5933e59307d610ef302 Client: Change look mode cursor visualization. --- diff --git a/src/client/draw_wins.c b/src/client/draw_wins.c index 24fae13..98afc5a 100644 --- a/src/client/draw_wins.c +++ b/src/client/draw_wins.c @@ -473,7 +473,7 @@ extern void draw_win_map(struct Win * win) char c = world.map.cells[y * world.map.length + x]; c = ' ' == c ? world.mem_map[y * world.map.length + x] : c; set_ch_on_yx(win, y, x * 2 + (y % 2), c | A_REVERSE); - set_ch_on_yx(win, y, x * 2 + (y % 2) + 1, ' ' | A_REVERSE); + set_ch_on_yx(win, y, x * 2 + (y % 2) + 1, '?' | A_REVERSE); } }