summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monstuff.h')
-rw-r--r--crawl-ref/source/monstuff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/monstuff.h b/crawl-ref/source/monstuff.h
index 30fc17ecfc..8cebd84d8f 100644
--- a/crawl-ref/source/monstuff.h
+++ b/crawl-ref/source/monstuff.h
@@ -40,10 +40,10 @@ struct level_exit
bool unreachable;
public:
- level_exit(coord_def c = coord_def(-1, -1),
+ level_exit(coord_def t = coord_def(-1, -1),
bool u = true)
- : target(c), unreachable(u)
+ : target(t), unreachable(u)
{
}
};