summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index d76c66dd41..1aeb3e30e1 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -2104,8 +2104,18 @@ void process_command( command_type cmd )
#endif
{
coord_def pos;
+#ifdef USE_TILE
+ std::string str = "Move the cursor to view the level map, or "
+ "type <w>?</w> for a list of commands.";
+ print_formatted_paragraph(str, get_number_of_cols());
+#endif
+
show_map(pos, true);
redraw_screen();
+
+#ifdef USE_TILE
+ mpr("Returning to the game...");
+#endif
if (pos.x > 0)
start_travel(pos.x, pos.y);
}