summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libunix.cc
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-18 06:17:54 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-18 06:17:54 +0000
commitb3cca065ea844de8f0bbefdecada786478e5e91b (patch)
tree1b67e1513d68a7932e22837f58580422e2ac93fd /crawl-ref/source/libunix.cc
parentc4aac587234c1eebad7fb400de5486a5ac73cd38 (diff)
downloadcrawl-ref-b3cca065ea844de8f0bbefdecada786478e5e91b.tar.gz
crawl-ref-b3cca065ea844de8f0bbefdecada786478e5e91b.zip
Oops, forgot to put "#ifndef USE_TILE" around unixcurses_shutdown() (though it
probably doesn't make much difference if the game is in the process of crashing). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8536 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/libunix.cc')
-rw-r--r--crawl-ref/source/libunix.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/libunix.cc b/crawl-ref/source/libunix.cc
index f8f8acb1a5..4770ac961e 100644
--- a/crawl-ref/source/libunix.cc
+++ b/crawl-ref/source/libunix.cc
@@ -1182,7 +1182,9 @@ static void _crash_signal_handler(int sig_num)
// In case the crash dumper is unable to open a file and has to dump
// to stderr.
+#ifndef USE_TILE
unixcurses_shutdown();
+#endif
do_crash_dump();