summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cio.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-02-21 17:41:30 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-02-21 17:41:30 +0000
commit9fd12611e22411e75014d154ca4026a1fe726811 (patch)
tree4eb0818d6196d6ced343824b69d11cf95bea3ca2 /crawl-ref/source/cio.cc
parent22ace1c2189a49f7ebce0d117bb9e41af36d7207 (diff)
downloadcrawl-ref-9fd12611e22411e75014d154ca4026a1fe726811.tar.gz
crawl-ref-9fd12611e22411e75014d154ca4026a1fe726811.zip
Fixed use_fake_cursor brokenness for DEC, fixed stringize_glyph mangling DEC if Crawl was built with Unicode support.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3452 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/cio.cc')
-rw-r--r--crawl-ref/source/cio.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/cio.cc b/crawl-ref/source/cio.cc
index 526c4d07b2..8c506b2d53 100644
--- a/crawl-ref/source/cio.cc
+++ b/crawl-ref/source/cio.cc
@@ -173,7 +173,7 @@ void cursorxy(int x, int y)
{
#if defined(USE_TILE)
tile_place_cursor(x-1, y-1, true);
-#elif defined(UNIX) && !defined(USE_TILE)
+#elif defined(UNIX)
if (Options.use_fake_cursor)
fakecursorxy(x, y);
else