From 66c59ae9c97694a8ab33eddd266dd6f73d72fde7 Mon Sep 17 00:00:00 2001 From: Steven Noonan Date: Sat, 10 Oct 2009 04:36:42 -0700 Subject: project-wide: implement use of platform.h detection macros Signed-off-by: Steven Noonan --- crawl-ref/source/libdos.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/libdos.cc') diff --git a/crawl-ref/source/libdos.cc b/crawl-ref/source/libdos.cc index 00b804f5b5..b14137241a 100644 --- a/crawl-ref/source/libdos.cc +++ b/crawl-ref/source/libdos.cc @@ -15,7 +15,7 @@ REVISION("$Rev$"); #include #include -#if defined(DOS) +#if defined(TARGET_OS_DOS) static bool cursor_is_enabled = true; @@ -138,4 +138,4 @@ void putwch(unsigned c) putch(static_cast(c)); } -#endif /* #if defined(DOS) */ +#endif /* #if defined(TARGET_OS_DOS) */ -- cgit v1.2.3-54-g00ecf