aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/ds/ds-fs-factory.cpp
diff options
context:
space:
mode:
authorMax Horn2008-02-24 23:14:04 +0000
committerMax Horn2008-02-24 23:14:04 +0000
commit5c99d45d9f8d558cd1a69a89f02fe58931d69da6 (patch)
tree0a884d8985513bdf81a1e1f4f4ba6c05fa00f4b7 /backends/fs/ds/ds-fs-factory.cpp
parenta3f2f4b039130d0227b34ec75e7b3fef2ae21d0d (diff)
downloadscummvm-rg350-5c99d45d9f8d558cd1a69a89f02fe58931d69da6.tar.gz
scummvm-rg350-5c99d45d9f8d558cd1a69a89f02fe58931d69da6.tar.bz2
scummvm-rg350-5c99d45d9f8d558cd1a69a89f02fe58931d69da6.zip
Don't #include the FS factory implementations in common/system.cpp; rather, rely on the build system to include them
svn-id: r30957
Diffstat (limited to 'backends/fs/ds/ds-fs-factory.cpp')
-rw-r--r--backends/fs/ds/ds-fs-factory.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/fs/ds/ds-fs-factory.cpp b/backends/fs/ds/ds-fs-factory.cpp
index 9edc46e60e..2eae2f2403 100644
--- a/backends/fs/ds/ds-fs-factory.cpp
+++ b/backends/fs/ds/ds-fs-factory.cpp
@@ -22,6 +22,7 @@
* $Id$
*/
+#if defined(__DS__)
#include "backends/fs/ds/ds-fs-factory.h"
#include "backends/fs/ds/ds-fs.h"
#include "dsmain.h" //for the isGBAMPAvailable() function
@@ -51,3 +52,4 @@ AbstractFilesystemNode *DSFilesystemFactory::makeFileNodePath(const String &path
return new DS::DSFileSystemNode(path);
}
}
+#endif