aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/psp/psp-fs-factory.cpp
diff options
context:
space:
mode:
authorDavid Corrales2007-05-12 20:00:52 +0000
committerDavid Corrales2007-05-12 20:00:52 +0000
commitd1f56d93f934150f4b579c2e90564e2bf035f113 (patch)
tree09aae1d4077c8e1c933fdca88d34d890a46f8a6a /backends/fs/psp/psp-fs-factory.cpp
parent86324f00bc561c03b281170125ef2fde14cae132 (diff)
downloadscummvm-rg350-d1f56d93f934150f4b579c2e90564e2bf035f113.tar.gz
scummvm-rg350-d1f56d93f934150f4b579c2e90564e2bf035f113.tar.bz2
scummvm-rg350-d1f56d93f934150f4b579c2e90564e2bf035f113.zip
Use common/singleton.h in the concrete fs factories.
svn-id: r26814
Diffstat (limited to 'backends/fs/psp/psp-fs-factory.cpp')
-rw-r--r--backends/fs/psp/psp-fs-factory.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/backends/fs/psp/psp-fs-factory.cpp b/backends/fs/psp/psp-fs-factory.cpp
index 2a0307d3f4..6fc829baf1 100644
--- a/backends/fs/psp/psp-fs-factory.cpp
+++ b/backends/fs/psp/psp-fs-factory.cpp
@@ -1,14 +1,7 @@
#include "backends/fs/psp/psp-fs-factory.h"
#include "backends/fs/psp/psp_fs.cpp"
-PSPFilesystemFactory *PSPFilesystemFactory::_instance = 0;
-
-PSPFilesystemFactory *PSPFilesystemFactory::instance(){
- if(_instance == 0){
- _instance = new PSPFilesystemFactory();
- }
- return _instance;
-}
+DECLARE_SINGLETON(PSPFilesystemFactory);
AbstractFilesystemNode *PSPFilesystemFactory::makeRootFileNode() const {
return new PSPFilesystemNode();