summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc10
1 files changed, 4 insertions, 6 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index a08840ea93..8e6f4b630b 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -730,6 +730,10 @@ static void _print_stats_line3()
}
textcolor( LIGHTGREY );
+
+#if DEBUG_DIAGNOSTICS || 1
+ cprintf( "%2d,%2d", you.x_pos, you.y_pos );
+#endif
}
void print_stats(void)
@@ -801,12 +805,6 @@ void print_stats(void)
you.redraw_status_flags = 0;
-#if DEBUG_DIAGNOSTICS
- // debug mode GPS
- cgotoxy(1, 18, GOTO_STAT);
- cprintf( "Position (%2d,%2d)", you.x_pos, you.y_pos );
-#endif
-
// get curses to redraw screen
update_screen();
} // end print_stats()