diff options
| author | Lars Persson | 2006-05-01 15:36:54 +0000 | 
|---|---|---|
| committer | Lars Persson | 2006-05-01 15:36:54 +0000 | 
| commit | 49dd5402139a0d4dfcce3ff7464adf4e8771da10 (patch) | |
| tree | e502c85daf25f3a83af347d9b80282dbac17c41f | |
| parent | 492929ae530316a4bbcb1c395abb1497016a1c9f (diff) | |
| download | scummvm-rg350-49dd5402139a0d4dfcce3ff7464adf4e8771da10.tar.gz scummvm-rg350-49dd5402139a0d4dfcce3ff7464adf4e8771da10.tar.bz2 scummvm-rg350-49dd5402139a0d4dfcce3ff7464adf4e8771da10.zip  | |
_pseudoRoot was not intialized properly
svn-id: r22261
| -rw-r--r-- | backends/fs/symbian/symbian-fs.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/fs/symbian/symbian-fs.cpp b/backends/fs/symbian/symbian-fs.cpp index 853388e251..062ab22856 100644 --- a/backends/fs/symbian/symbian-fs.cpp +++ b/backends/fs/symbian/symbian-fs.cpp @@ -88,6 +88,9 @@ SymbianFilesystemNode::SymbianFilesystemNode(bool aIsRoot) {  SymbianFilesystemNode::SymbianFilesystemNode(const String &path) {  	if (path.size() == 0)  		_isPseudoRoot = true; +	else +		_isPseudoRoot = false; +  	_path = path;  	const char *dsplName = NULL, *pos = path.c_str();  	// FIXME -- why is this code scanning for a slash '/' when the rest of  | 
