X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fdraw_wins.c;h=98afc5ab824c3aa814b39758c30140e553e47ba4;hb=0788cbb731a9960ac91cb5933e59307d610ef302;hp=24fae132707df1566fa59f07e0e5057cdd980e9b;hpb=62997c25342a03e2bd62f297af643c7044b45ab0;p=plomrogue 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); } }