diff options
-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) |