summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/files.cc
diff options
context:
space:
mode:
authorennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-24 00:31:57 +0000
committerennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-24 00:31:57 +0000
commitc2457cbc9315371f712321e7d0263883151eb196 (patch)
treebbd1189f7a484bdcaaccd2d38e1f32552bc43958 /crawl-ref/source/files.cc
parent01b9f925de89c9c68dc845da151011414e57cc92 (diff)
downloadcrawl-ref-c2457cbc9315371f712321e7d0263883151eb196.tar.gz
crawl-ref-c2457cbc9315371f712321e7d0263883151eb196.zip
More configurable fonts for Tiles.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6654 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/files.cc')
-rw-r--r--crawl-ref/source/files.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/files.cc b/crawl-ref/source/files.cc
index f0f7c041c2..a82fc65208 100644
--- a/crawl-ref/source/files.cc
+++ b/crawl-ref/source/files.cc
@@ -521,11 +521,17 @@ std::string datafile_path(std::string basename,
const std::string prefixes[] = {
std::string("dat") + FILE_SEPARATOR,
+#ifdef USE_TILE
+ std::string("dat/tiles") + FILE_SEPARATOR,
+#endif
std::string("docs") + FILE_SEPARATOR,
std::string("settings") + FILE_SEPARATOR,
#ifndef DATA_DIR_PATH
std::string("..") + FILE_SEPARATOR + "docs" + FILE_SEPARATOR,
std::string("..") + FILE_SEPARATOR + "dat" + FILE_SEPARATOR,
+#ifdef USE_TILE
+ std::string("..") + FILE_SEPARATOR + "dat/tiles" + FILE_SEPARATOR,
+#endif
std::string("..") + FILE_SEPARATOR + "settings" + FILE_SEPARATOR,
std::string("..") + FILE_SEPARATOR,
#endif