diff options
author | Travis Howell | 2003-08-01 04:42:56 +0000 |
---|---|---|
committer | Travis Howell | 2003-08-01 04:42:56 +0000 |
commit | 053d12ef2915c29f833d416df7f5064b4382eb14 (patch) | |
tree | b685755145ba757830ecdcd6241f1a85186631b1 /backends | |
parent | b9cf579491cc7b13204b196428527047001ca685 (diff) | |
download | scummvm-rg350-053d12ef2915c29f833d416df7f5064b4382eb14.tar.gz scummvm-rg350-053d12ef2915c29f833d416df7f5064b4382eb14.tar.bz2 scummvm-rg350-053d12ef2915c29f833d416df7f5064b4382eb14.zip |
Small cleanup
svn-id: r9354
Diffstat (limited to 'backends')
-rw-r--r-- | backends/fs/windows/windows-fs.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/backends/fs/windows/windows-fs.cpp b/backends/fs/windows/windows-fs.cpp index 412c131c2e..a4479adac1 100644 --- a/backends/fs/windows/windows-fs.cpp +++ b/backends/fs/windows/windows-fs.cpp @@ -18,8 +18,7 @@ * $Header$ */ -// TODO - how about we #define WINDOWS for all our windows targets? -#if defined(_MSC_VER) || defined(__MINGW32__) +#ifdef WIN32 #include "../fs.h" #include <stdio.h> @@ -212,4 +211,4 @@ FilesystemNode *WindowsFilesystemNode::parent() const { return p; } -#endif // defined(_MSC_VER) || defined(__MINGW32__) +#endif // WIN32 |