diff options
author | Yotam Barnoy | 2010-08-19 11:18:01 +0000 |
---|---|---|
committer | Yotam Barnoy | 2010-08-19 11:18:01 +0000 |
commit | 8fb92b9e2a95ec8ef137eba930287f3c29772e8d (patch) | |
tree | 669bf5355b939734410794b83699945a92cc64a0 /backends/plugins/psp | |
parent | 3ece67d1b8cbb6e5bfc493297726b8cb2afc8ee7 (diff) | |
download | scummvm-rg350-8fb92b9e2a95ec8ef137eba930287f3c29772e8d.tar.gz scummvm-rg350-8fb92b9e2a95ec8ef137eba930287f3c29772e8d.tar.bz2 scummvm-rg350-8fb92b9e2a95ec8ef137eba930287f3c29772e8d.zip |
PSP: made PSP compile with plugins.
Also removed criticalSection calls from elf-loader.cpp, since now streams are used so the criticalSections are automatic.
svn-id: r52206
Diffstat (limited to 'backends/plugins/psp')
-rw-r--r-- | backends/plugins/psp/psp-provider.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/backends/plugins/psp/psp-provider.h b/backends/plugins/psp/psp-provider.h index efe62ecf2c..b7934179bf 100644 --- a/backends/plugins/psp/psp-provider.h +++ b/backends/plugins/psp/psp-provider.h @@ -40,10 +40,9 @@ class PSPPluginProvider : public ELFPluginProvider { }; public: - Plugin* PSPPluginProvider::createPlugin(const Common::FSNode &node) const { + Plugin* createPlugin(const Common::FSNode &node) const { return new PSPPlugin(node.getPath()); } -} }; #endif /* BACKENDS_PLUGINS_PSP_PSP_PROVIDER_H */ |