home
·
contact
·
privacy
projects
/
plomrogue
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
62997c2
)
Client: Change look mode cursor visualization.
author
Christian Heller
<c.heller@plomlompom.de>
Wed, 11 Mar 2015 21:32:46 +0000
(22:32 +0100)
committer
Christian Heller
<c.heller@plomlompom.de>
Wed, 11 Mar 2015 21:32:46 +0000
(22:32 +0100)
src/client/draw_wins.c
patch
|
blob
|
history
diff --git
a/src/client/draw_wins.c
b/src/client/draw_wins.c
index 24fae132707df1566fa59f07e0e5057cdd980e9b..98afc5ab824c3aa814b39758c30140e553e47ba4 100644
(file)
--- 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);
}
}