From c2457cbc9315371f712321e7d0263883151eb196 Mon Sep 17 00:00:00 2001 From: ennewalker Date: Thu, 24 Jul 2008 00:31:57 +0000 Subject: More configurable fonts for Tiles. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6654 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/files.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'crawl-ref/source/files.cc') 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 -- cgit v1.2.3-54-g00ecf