aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Persson2006-06-16 22:20:07 +0000
committerLars Persson2006-06-16 22:20:07 +0000
commit7675b3546de924770caa870e65320cf070f347e8 (patch)
tree99c7607a4d3ee34acc98dc52a72ad859ec5a4bd6
parentf1831b8b5ded1830a8947de280daa4c7d995cde1 (diff)
downloadscummvm-rg350-7675b3546de924770caa870e65320cf070f347e8.tar.gz
scummvm-rg350-7675b3546de924770caa870e65320cf070f347e8.tar.bz2
scummvm-rg350-7675b3546de924770caa870e65320cf070f347e8.zip
Remove _name.clear(); from Close since same File instance is re-opened by Symbian using that filename.
svn-id: r23152
-rw-r--r--common/file.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/common/file.cpp b/common/file.cpp
index 346093f2fc..075c821886 100644
--- a/common/file.cpp
+++ b/common/file.cpp
@@ -344,7 +344,6 @@ void File::close() {
if (_handle)
fclose(_handle);
_handle = NULL;
- _name.clear();
}
bool File::isOpen() const {