diff options
| author | Max Horn | 2008-02-24 23:14:04 +0000 | 
|---|---|---|
| committer | Max Horn | 2008-02-24 23:14:04 +0000 | 
| commit | 5c99d45d9f8d558cd1a69a89f02fe58931d69da6 (patch) | |
| tree | 0a884d8985513bdf81a1e1f4f4ba6c05fa00f4b7 /backends/fs/psp | |
| parent | a3f2f4b039130d0227b34ec75e7b3fef2ae21d0d (diff) | |
| download | scummvm-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/psp')
| -rw-r--r-- | backends/fs/psp/psp-fs-factory.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/fs/psp/psp-fs-factory.cpp b/backends/fs/psp/psp-fs-factory.cpp index c0d7cb9e6f..87f0e0f587 100644 --- a/backends/fs/psp/psp-fs-factory.cpp +++ b/backends/fs/psp/psp-fs-factory.cpp @@ -22,6 +22,7 @@   * $Id$   */ +#if defined(__PSP__)  #include "backends/fs/psp/psp-fs-factory.h"  #include "backends/fs/psp/psp-fs.cpp" @@ -38,3 +39,4 @@ AbstractFilesystemNode *PSPFilesystemFactory::makeCurrentDirectoryFileNode() con  AbstractFilesystemNode *PSPFilesystemFactory::makeFileNodePath(const String &path) const {  	return new PSPFilesystemNode(path, true);  } +#endif  | 
