From 37b3a12cfde07fdb458b0bc28521a64dd20853bb Mon Sep 17 00:00:00 2001 From: David Ploog Date: Wed, 11 Nov 2009 06:49:54 +0100 Subject: Fix off-by-one error for glyphs in Ctrl-X listing. (doy) --- crawl-ref/source/directn.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/directn.cc') diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc index 50fdc78af6..01b33bd563 100644 --- a/crawl-ref/source/directn.cc +++ b/crawl-ref/source/directn.cc @@ -695,7 +695,7 @@ void full_describe_view() const coord_def c = list_features[i]; std::string desc = ""; #ifndef USE_TILE - const coord_def e = c - you.pos() + coord_def(9,9); + const coord_def e = c - you.pos() + coord_def(8,8); show_type object = env.show(e); unsigned short col = object.colour; unsigned ch; -- cgit v1.2.3-54-g00ecf