diff options
| author | Chris Apers | 2008-02-26 20:54:02 +0000 | 
|---|---|---|
| committer | Chris Apers | 2008-02-26 20:54:02 +0000 | 
| commit | 29c6c7a6266041ee63b40c4852e0d3a9d6c35915 (patch) | |
| tree | afb28bb73603dda0317619ad4c6063c5c9bf5d8c | |
| parent | accae802d14271544cc613107290136eceb6f3da (diff) | |
| download | scummvm-rg350-29c6c7a6266041ee63b40c4852e0d3a9d6c35915.tar.gz scummvm-rg350-29c6c7a6266041ee63b40c4852e0d3a9d6c35915.tar.bz2 scummvm-rg350-29c6c7a6266041ee63b40c4852e0d3a9d6c35915.zip  | |
Fixed FileSystemNode::exists() method, see bug #1875588. SAGA engine works fine now
svn-id: r30979
| -rw-r--r-- | backends/fs/palmos/palmos-fs.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/fs/palmos/palmos-fs.cpp b/backends/fs/palmos/palmos-fs.cpp index 49d3e3dc93..5edb6c2d26 100644 --- a/backends/fs/palmos/palmos-fs.cpp +++ b/backends/fs/palmos/palmos-fs.cpp @@ -55,7 +55,7 @@ public:  	 */  	PalmOSFilesystemNode(const String &p); -	virtual bool exists() const { return true; }		//FIXME: this is just a stub +	virtual bool exists() const { return _isValid; }  	virtual String getDisplayName() const { return _displayName; }  	virtual String getName() const { return _displayName; }  	virtual String getPath() const { return _path; }  | 
