aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/tools
diff options
context:
space:
mode:
authorMax Horn2009-02-15 21:27:42 +0000
committerMax Horn2009-02-15 21:27:42 +0000
commite90eed4ff338f833067f28e0374d58ccfdf6cbf1 (patch)
treeb83cb7ece93b5b2697cae3ee39f11d7c460a8391 /engines/sci/tools
parent5417f6bacb73d5996b26229513c2ce01db27bf6a (diff)
downloadscummvm-rg350-e90eed4ff338f833067f28e0374d58ccfdf6cbf1.tar.gz
scummvm-rg350-e90eed4ff338f833067f28e0374d58ccfdf6cbf1.tar.bz2
scummvm-rg350-e90eed4ff338f833067f28e0374d58ccfdf6cbf1.zip
SCI: Changed _WIN32 -> WIN32; _DREAMCAST -> __DC__; removed _DOS stuff
svn-id: r38305
Diffstat (limited to 'engines/sci/tools')
-rw-r--r--engines/sci/tools/sciunpack.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/tools/sciunpack.cpp b/engines/sci/tools/sciunpack.cpp
index e5b3b39a2e..21b7a39050 100644
--- a/engines/sci/tools/sciunpack.cpp
+++ b/engines/sci/tools/sciunpack.cpp
@@ -49,7 +49,7 @@
#endif
#ifdef HAVE_GETOPT_H
-# ifndef _WIN32
+# ifndef WIN32
# include <getopt.h>
# else
# include <win32/getopt.h>
@@ -62,7 +62,7 @@
# endif /* HAVE_LIBPNG */
#endif /* DRAW_GRAPHICS */
-#if defined (_MSC_VER) || defined (__BEOS__) || defined(_DOS) || defined(__amigaos4__)
+#if defined (_MSC_VER) || defined (__BEOS__) || defined(__amigaos4__)
/* [DJ] fchmod is not in Visual C++ RTL - and probably not needed,anyway */
/* [RS] (see comment above, but read MS-DOS instead of Visual C++ RTL) */
# define fchmod(file,mode)
@@ -92,7 +92,7 @@ static guint8 midimask = 0x01; /* MT-32 */
resource_mgr_t *resmgr;
-#ifdef _WIN32
+#ifdef WIN32
#define fchmod(arg1, arg2)
#endif