mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
Renamed FSNode::openForReading / openForWriting to createReadStream / createWriteStream, again to make ownership of the returned stream clear
svn-id: r36014
This commit is contained in:
@@ -40,7 +40,7 @@ bool XMLParser::loadFile(const Common::String &filename) {
|
||||
}
|
||||
|
||||
bool XMLParser::loadFile(const FSNode &node) {
|
||||
_stream = node.openForReading();
|
||||
_stream = node.createReadStream();
|
||||
if (!_stream)
|
||||
return false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user