Renamed Archive::openFile to createReadStreamForMember

svn-id: r36021
This commit is contained in:
Max Horn 2009-01-23 04:45:44 +00:00
parent 9861afd8fd
commit 14c5bbbccf
21 changed files with 47 additions and 47 deletions

View file

@ -350,7 +350,7 @@ bool ArjFile::open(const Common::String &filename) {
error("Attempt to open another instance of archive");
if (_fallBack) {
_uncompressed = SearchMan.openFile(filename);
_uncompressed = SearchMan.createReadStreamForMember(filename);
if (_uncompressed)
return true;
}