diff options
author | Yotam Barnoy | 2010-03-19 11:55:18 +0000 |
---|---|---|
committer | Yotam Barnoy | 2010-03-19 11:55:18 +0000 |
commit | b9d876e23a46c1619393438bc875e9e07a8dd82b (patch) | |
tree | 78ee653ee709a4ac200aaff14551098969848608 /backends/plugins/psp | |
parent | b2b7a08cc2a502e0f6f9ec98afd85f30bdc529ab (diff) | |
download | scummvm-rg350-b9d876e23a46c1619393438bc875e9e07a8dd82b.tar.gz scummvm-rg350-b9d876e23a46c1619393438bc875e9e07a8dd82b.tar.bz2 scummvm-rg350-b9d876e23a46c1619393438bc875e9e07a8dd82b.zip |
PSP: removed unneeded overload of addCustomDirectories()
svn-id: r48299
Diffstat (limited to 'backends/plugins/psp')
-rw-r--r-- | backends/plugins/psp/psp-provider.cpp | 4 | ||||
-rw-r--r-- | backends/plugins/psp/psp-provider.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/backends/plugins/psp/psp-provider.cpp b/backends/plugins/psp/psp-provider.cpp index 61f5d07b5d..f394916538 100644 --- a/backends/plugins/psp/psp-provider.cpp +++ b/backends/plugins/psp/psp-provider.cpp @@ -105,8 +105,4 @@ bool PSPPluginProvider::isPluginFilename(const Common::FSNode &node) const { return true; } -void PSPPluginProvider::addCustomDirectories(Common::FSList &dirs) const { - dirs.push_back(Common::FSNode("/")); -} - #endif // defined(DYNAMIC_MODULES) && defined(__PSP__) diff --git a/backends/plugins/psp/psp-provider.h b/backends/plugins/psp/psp-provider.h index 0646b8db36..d6c44c5a85 100644 --- a/backends/plugins/psp/psp-provider.h +++ b/backends/plugins/psp/psp-provider.h @@ -36,7 +36,6 @@ protected: bool isPluginFilename(const Common::FSNode &node) const; - void addCustomDirectories(Common::FSList &dirs) const; }; #endif // defined(DYNAMIC_MODULES) && defined(__PSP__) |