aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/wintermute/Base/BFileManager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/wintermute/Base/BFileManager.cpp b/engines/wintermute/Base/BFileManager.cpp
index 61017a9850..1e477e9038 100644
--- a/engines/wintermute/Base/BFileManager.cpp
+++ b/engines/wintermute/Base/BFileManager.cpp
@@ -625,9 +625,9 @@ Common::SeekableReadStream *CBFileManager::openFile(const Common::String &filena
}
#endif*/
- Common::SeekableReadStream *File = openFileRaw(filename);
- if (File && keepTrackOf) _openFiles.add(File);
- return File;
+ Common::SeekableReadStream *file = openFileRaw(filename);
+ if (file && keepTrackOf) _openFiles.add(file);
+ return file;
}