diff options
author | Max Horn | 2010-03-18 16:53:20 +0000 |
---|---|---|
committer | Max Horn | 2010-03-18 16:53:20 +0000 |
commit | 156a106ebcfaadbe8d2ff28cc05894ae79bc4204 (patch) | |
tree | 94693e71b0e0cecda81545d1987d7a937357defa /backends/plugins | |
parent | cac0ac66e22d18a57958ef342e6b115e35197e90 (diff) | |
download | scummvm-rg350-156a106ebcfaadbe8d2ff28cc05894ae79bc4204.tar.gz scummvm-rg350-156a106ebcfaadbe8d2ff28cc05894ae79bc4204.tar.bz2 scummvm-rg350-156a106ebcfaadbe8d2ff28cc05894ae79bc4204.zip |
Trying to fix compilation (porters should review these changes, seems I uncovered some lurking old breakage)
svn-id: r48289
Diffstat (limited to 'backends/plugins')
-rw-r--r-- | backends/plugins/dc/dc-provider.h | 4 | ||||
-rw-r--r-- | backends/plugins/psp/psp-provider.h | 4 | ||||
-rw-r--r-- | backends/plugins/win32/win32-provider.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/backends/plugins/dc/dc-provider.h b/backends/plugins/dc/dc-provider.h index ac10665419..849beb3c70 100644 --- a/backends/plugins/dc/dc-provider.h +++ b/backends/plugins/dc/dc-provider.h @@ -36,8 +36,8 @@ protected: bool isPluginFilename(const Common::FSNode &node) const; - virtual void addCustomDirectories(Common::StringArray &dirs) const { - dirs.push_back("/"); + virtual void addCustomDirectories(Common::FSList &dirs) const { + dirs.push_back(Common::FSNode("/")); } }; diff --git a/backends/plugins/psp/psp-provider.h b/backends/plugins/psp/psp-provider.h index ef2222076a..0ebb00f048 100644 --- a/backends/plugins/psp/psp-provider.h +++ b/backends/plugins/psp/psp-provider.h @@ -36,8 +36,8 @@ protected: bool isPluginFilename(const Common::FSNode &node) const; - virtual void addCustomDirectories(Common::StringArray &dirs) const { - dirs.push_back("/"); + virtual void addCustomDirectories(Common::FSList &dirs) const { + dirs.push_back(Common::FSNode("/")); } }; diff --git a/backends/plugins/win32/win32-provider.h b/backends/plugins/win32/win32-provider.h index 56fa35810c..c7855faf59 100644 --- a/backends/plugins/win32/win32-provider.h +++ b/backends/plugins/win32/win32-provider.h @@ -36,7 +36,7 @@ protected: bool isPluginFilename(const Common::FSNode &node) const; - virtual void addCustomDirectories(Common::StringArray &dirs) const {} + virtual void addCustomDirectories(Common::FSList &dirs) const {} }; #endif // defined(DYNAMIC_MODULES) && defined(_WIN32) |