summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libgui.cc
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-15 08:33:14 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-15 09:34:12 -0700
commit37f9cd1dd4d3507ec9e4b33780efe07353b62ec1 (patch)
tree30b20a0b9c4787ae511ff68ceb49d1246948ce10 /crawl-ref/source/libgui.cc
parent2335a4c24b3b5dd04656bcb724fd8d85206e0428 (diff)
downloadcrawl-ref-37f9cd1dd4d3507ec9e4b33780efe07353b62ec1.tar.gz
crawl-ref-37f9cd1dd4d3507ec9e4b33780efe07353b62ec1.zip
libgui.cc: #ifdef out on non-USE_TILE builds
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/libgui.cc')
-rw-r--r--crawl-ref/source/libgui.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/libgui.cc b/crawl-ref/source/libgui.cc
index 189a44e8c4..142e1fbcf7 100644
--- a/crawl-ref/source/libgui.cc
+++ b/crawl-ref/source/libgui.cc
@@ -8,6 +8,8 @@
#include "AppHdr.h"
REVISION("$Rev$");
+#ifdef USE_TILE
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -411,3 +413,4 @@ int stricmp(const char *str1, const char *str2)
}
#endif // #ifdef UNIX
+#endif // #ifdef USE_TILE