From 241ceb5971b5c87b58e7f28f9fee417230561a5d Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Sat, 17 Oct 2009 00:16:20 +0200 Subject: Globally replace see_grid by see_cell. --- crawl-ref/source/state.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/state.cc') diff --git a/crawl-ref/source/state.cc b/crawl-ref/source/state.cc index 21b500954c..330f436610 100644 --- a/crawl-ref/source/state.cc +++ b/crawl-ref/source/state.cc @@ -207,9 +207,9 @@ bool interrupt_cmd_repeat( activity_interrupt_type ai, formatted_string fs( channel_to_colour(MSGCH_WARN) ); fs.cprintf("%s (", mon->name(DESC_PLAIN, true).c_str()); fs.add_glyph( mon ); - fs.cprintf(") in view: (%d,%d), see_grid: %s", + fs.cprintf(") in view: (%d,%d), see_cell: %s", mon->pos().x, mon->pos().y, - see_grid(mon->pos())? "yes" : "no"); + see_cell(mon->pos())? "yes" : "no"); formatted_mpr(fs, MSGCH_WARN); #endif -- cgit v1.2.3-54-g00ecf