From 262b8e18ed8cb58afb40a816ac0fdedfe3a7db5f Mon Sep 17 00:00:00 2001 From: haranp Date: Wed, 30 Jul 2008 10:53:06 +0000 Subject: Massive overhaul to move towards coord_def(). This might have introduced some bugs: I now get intermittent crashes on startup (this might have to do with the changes to special_room.) Sorry about that - committing before I need to do any more big conflict resolutions. Fixes coming later. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6732 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/output.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/output.cc') diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc index d6263ac742..cf73bba4ca 100644 --- a/crawl-ref/source/output.cc +++ b/crawl-ref/source/output.cc @@ -563,7 +563,7 @@ static void _get_status_lights(std::vector& out) { static char static_pos_buf[80]; snprintf(static_pos_buf, sizeof(static_pos_buf), - "%2d,%2d", you.x_pos, you.y_pos ); + "%2d,%2d", you.pos().x, you.pos().y ); out.push_back(status_light(LIGHTGREY, static_pos_buf)); static char static_hunger_buf[80]; -- cgit v1.2.3-54-g00ecf