summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/files.cc
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-19 13:46:01 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-19 14:32:50 -0700
commit2bbc6dd25a227a747ef6bc7f83637b57c10d9af7 (patch)
tree696a88089bf48709bece93c8b96ac7550bf090d8 /crawl-ref/source/files.cc
parentcf2b911c89d554a8f5f72156cef48b5f0fefd797 (diff)
downloadcrawl-ref-2bbc6dd25a227a747ef6bc7f83637b57c10d9af7.tar.gz
crawl-ref-2bbc6dd25a227a747ef6bc7f83637b57c10d9af7.zip
win32: eliminate need for WIN32TILES/WIN32CONSOLE macros
Instead of defined(WIN32CONSOLE) we should use: defined(TARGET_OS_WINDOWS) && !defined(USE_TILE) As well as replace defined(WIN32TILES) with: defined(TARGET_OS_WINDOWS) && defined(USE_TILE) Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/files.cc')
-rw-r--r--crawl-ref/source/files.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/files.cc b/crawl-ref/source/files.cc
index c26a07e38d..d92fa90c06 100644
--- a/crawl-ref/source/files.cc
+++ b/crawl-ref/source/files.cc
@@ -302,7 +302,7 @@ bool is_absolute_path(const std::string &path)
{
return (!path.empty()
&& (path[0] == FILE_SEPARATOR
-#if defined(WIN32CONSOLE) || defined(WIN32TILES)
+#ifdef TARGET_OS_WINDOWS
|| path.find(':') != std::string::npos
#endif
));