summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/libgui.cc1
-rw-r--r--crawl-ref/source/tilepick.cc1
-rw-r--r--crawl-ref/source/tilereg.cc3
3 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/libgui.cc b/crawl-ref/source/libgui.cc
index 93102cb775..7fafaffc2a 100644
--- a/crawl-ref/source/libgui.cc
+++ b/crawl-ref/source/libgui.cc
@@ -20,6 +20,7 @@
#include "externs.h"
#include "tilereg.h"
#include "message.h"
+#include "showsymb.h"
#include "stash.h"
#include "state.h"
#include "stuff.h"
diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc
index aeda884ff2..54677b59de 100644
--- a/crawl-ref/source/tilepick.cc
+++ b/crawl-ref/source/tilepick.cc
@@ -27,6 +27,7 @@
#include "mon-util.h"
#include "player.h"
#include "shopping.h"
+#include "showsymb.h"
#include "spells3.h" // for the halo
#include "stuff.h"
#include "terrain.h"
diff --git a/crawl-ref/source/tilereg.cc b/crawl-ref/source/tilereg.cc
index a629e4df27..745ca0fca9 100644
--- a/crawl-ref/source/tilereg.cc
+++ b/crawl-ref/source/tilereg.cc
@@ -30,6 +30,7 @@
#include "options.h"
#include "player.h"
#include "religion.h"
+#include "showsymb.h"
#include "species.h"
#include "spells3.h"
#include "spl-book.h"
@@ -1382,7 +1383,7 @@ bool DungeonRegion::update_tip_text(std::string& tip)
if (!cell_is_solid(m_cursor[CURSOR_MOUSE]))
{
- const monsters *mon = monster_at(m_cursor[CURSOR_MOUSE]));
+ const monsters *mon = monster_at(m_cursor[CURSOR_MOUSE]);
if (!mon || mon->friendly())
tip = "[L-Click] Move\n";
else if (mon)