M4: Do not use Common::SubReadStream where ReadStream suffices

svn-id: r54342
This commit is contained in:
Max Horn 2010-11-18 19:27:01 +00:00
parent 49468fdfff
commit d6592aaba6
2 changed files with 3 additions and 3 deletions

View File

@ -950,7 +950,7 @@ void Converse::loadConversationMads(const char *convName) {
for (j = 0; j < _convNodes[i]->entryCount; j++) {
debugCN(kDebugConversations, "*** Node %i entry %i data size %i\n", i, j, _convNodes[i]->entries[j]->size);
debugCN(kDebugConversations, "Entry ID %i, text %s\n", _convNodes[i]->entries[j]->id, _convNodes[i]->entries[j]->text);
Common::SubReadStream *entryStream = new Common::SubReadStream(convS, _convNodes[i]->entries[j]->size);
Common::ReadStream *entryStream = new Common::SubReadStream(convS, _convNodes[i]->entries[j]->size);
readConvEntryActions(entryStream, _convNodes[i]->entries[j]);
delete entryStream;
debugCN(kDebugConversations, "--------------------\n");
@ -960,7 +960,7 @@ void Converse::loadConversationMads(const char *convName) {
delete convS;
}
void Converse::readConvEntryActions(Common::SubReadStream *convS, ConvEntry *curEntry) {
void Converse::readConvEntryActions(Common::ReadStream *convS, ConvEntry *curEntry) {
uint8 chunk;
uint8 type; // 255: normal, 11: conditional
uint8 hasText1, hasText2;

View File

@ -191,7 +191,7 @@ private:
void loadConversation(const char *convName);
void loadConversationMads(const char *convName);
void readConvEntryActions(Common::SubReadStream *convS, ConvEntry *curEntry);
void readConvEntryActions(Common::ReadStream *convS, ConvEntry *curEntry);
void setEntryInfo(int32 offset, EntryType type, int32 nodeIndex, int32 entryIndex);
};