aboutsummaryrefslogtreecommitdiff
path: root/backends/plugins
diff options
context:
space:
mode:
authorMax Horn2010-03-18 20:19:58 +0000
committerMax Horn2010-03-18 20:19:58 +0000
commitad8584d25c26f9feac82031fb9db050a140c5869 (patch)
tree9dbb6a5b4f19638bb585e906a0eb024bd223555c /backends/plugins
parent156a106ebcfaadbe8d2ff28cc05894ae79bc4204 (diff)
downloadscummvm-rg350-ad8584d25c26f9feac82031fb9db050a140c5869.tar.gz
scummvm-rg350-ad8584d25c26f9feac82031fb9db050a140c5869.tar.bz2
scummvm-rg350-ad8584d25c26f9feac82031fb9db050a140c5869.zip
One more try to make DC & PSP compile again
svn-id: r48290
Diffstat (limited to 'backends/plugins')
-rw-r--r--backends/plugins/dc/dc-provider.cpp3
-rw-r--r--backends/plugins/dc/dc-provider.h4
-rw-r--r--backends/plugins/psp/psp-provider.cpp3
-rw-r--r--backends/plugins/psp/psp-provider.h4
4 files changed, 8 insertions, 6 deletions
diff --git a/backends/plugins/dc/dc-provider.cpp b/backends/plugins/dc/dc-provider.cpp
index f73af3854b..8bc4db1a6b 100644
--- a/backends/plugins/dc/dc-provider.cpp
+++ b/backends/plugins/dc/dc-provider.cpp
@@ -97,5 +97,8 @@ bool DCPluginProvider::isPluginFilename(const Common::FSNode &node) const {
return true;
}
+void DCPluginProvider::addCustomDirectories(Common::FSList &dirs) const {
+ dirs.push_back(Common::FSNode("/"));
+}
#endif // defined(DYNAMIC_MODULES) && defined(__DC__)
diff --git a/backends/plugins/dc/dc-provider.h b/backends/plugins/dc/dc-provider.h
index 849beb3c70..530882c4f7 100644
--- a/backends/plugins/dc/dc-provider.h
+++ b/backends/plugins/dc/dc-provider.h
@@ -36,9 +36,7 @@ protected:
bool isPluginFilename(const Common::FSNode &node) const;
- virtual void addCustomDirectories(Common::FSList &dirs) const {
- dirs.push_back(Common::FSNode("/"));
- }
+ void addCustomDirectories(Common::FSList &dirs) const;
};
#endif // defined(DYNAMIC_MODULES) && defined(__DC__)
diff --git a/backends/plugins/psp/psp-provider.cpp b/backends/plugins/psp/psp-provider.cpp
index 4478d61023..61f5d07b5d 100644
--- a/backends/plugins/psp/psp-provider.cpp
+++ b/backends/plugins/psp/psp-provider.cpp
@@ -105,5 +105,8 @@ 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 0ebb00f048..0646b8db36 100644
--- a/backends/plugins/psp/psp-provider.h
+++ b/backends/plugins/psp/psp-provider.h
@@ -36,9 +36,7 @@ protected:
bool isPluginFilename(const Common::FSNode &node) const;
- virtual void addCustomDirectories(Common::FSList &dirs) const {
- dirs.push_back(Common::FSNode("/"));
- }
+ void addCustomDirectories(Common::FSList &dirs) const;
};
#endif // defined(DYNAMIC_MODULES) && defined(__PSP__)