diff options
author | Lars Persson | 2007-06-08 21:29:18 +0000 |
---|---|---|
committer | Lars Persson | 2007-06-08 21:29:18 +0000 |
commit | 6c9e50c8a81315afe76246800962cdf4f15d5fb5 (patch) | |
tree | 11ee7b36b0bfc93da7aac9ab363bf5e4cf6a05e3 /backends/platform | |
parent | 3f5084497a9fc3ac5935bf73930c3f5b67113937 (diff) | |
download | scummvm-rg350-6c9e50c8a81315afe76246800962cdf4f15d5fb5.tar.gz scummvm-rg350-6c9e50c8a81315afe76246800962cdf4f15d5fb5.tar.bz2 scummvm-rg350-6c9e50c8a81315afe76246800962cdf4f15d5fb5.zip |
Updated filesharing mode to full sharing. Now scummvm.ini works again.
svn-id: r27218
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/symbian/src/SymbianOS.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/symbian/src/SymbianOS.cpp b/backends/platform/symbian/src/SymbianOS.cpp index 4901480bf9..0bb67c97b9 100644 --- a/backends/platform/symbian/src/SymbianOS.cpp +++ b/backends/platform/symbian/src/SymbianOS.cpp @@ -454,7 +454,7 @@ FILE* symbian_fopen(const char* name, const char* mode) { fileMode = fileMode| EFileWrite; } - fileMode = fileMode| EFileShareReadersOnly; + fileMode = fileMode| EFileShareAny; switch(mode[0]) { case 'a': |