diff options
Diffstat (limited to 'backends/fs')
-rw-r--r-- | backends/fs/psp/psp-fs-factory.h | 1 | ||||
-rw-r--r-- | backends/fs/psp/psp-fs.cpp | 1 | ||||
-rw-r--r-- | backends/fs/psp/psp-stream.h | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/backends/fs/psp/psp-fs-factory.h b/backends/fs/psp/psp-fs-factory.h index 2e8d5d9efc..36ecb8188b 100644 --- a/backends/fs/psp/psp-fs-factory.h +++ b/backends/fs/psp/psp-fs-factory.h @@ -35,7 +35,6 @@ */ class PSPFilesystemFactory : public FilesystemFactory, public Common::Singleton<PSPFilesystemFactory> { public: - const char *getObjectName() const { return "PSPFilesystemFactory"; } virtual AbstractFSNode *makeRootFileNode() const; virtual AbstractFSNode *makeCurrentDirectoryFileNode() const; virtual AbstractFSNode *makeFileNodePath(const Common::String &path) const; diff --git a/backends/fs/psp/psp-fs.cpp b/backends/fs/psp/psp-fs.cpp index 64983f7144..a2b00209b0 100644 --- a/backends/fs/psp/psp-fs.cpp +++ b/backends/fs/psp/psp-fs.cpp @@ -66,7 +66,6 @@ public: */ PSPFilesystemNode(const Common::String &p, bool verify = true); - const char *getObjectName() const { return "PSPFileSystemNode"; } virtual bool exists() const; virtual Common::String getDisplayName() const { return _displayName; } virtual Common::String getName() const { return _displayName; } diff --git a/backends/fs/psp/psp-stream.h b/backends/fs/psp/psp-stream.h index 9fcdd6d606..673630b685 100644 --- a/backends/fs/psp/psp-stream.h +++ b/backends/fs/psp/psp-stream.h @@ -56,7 +56,6 @@ protected: public: - const char *getObjectName() const { return "PSPIoStream"; } /** * Given a path, invoke fopen on that path and wrap the result in a * PSPIoStream instance. |