ADL: Load hires4 commands and item pictures
This commit is contained in:
parent
70cd57892a
commit
177206cc2e
8 changed files with 67 additions and 21 deletions
|
@ -429,6 +429,13 @@ void AdlEngine_v2::loadPictures(Common::SeekableReadStream &stream) {
|
|||
}
|
||||
}
|
||||
|
||||
void AdlEngine_v2::loadItemPictures(Common::SeekableReadStream &stream, byte count) {
|
||||
for (uint i = 0; i < count; ++i) {
|
||||
stream.readByte(); // number
|
||||
_itemPics.push_back(readDataBlockPtr(stream));
|
||||
}
|
||||
}
|
||||
|
||||
int AdlEngine_v2::o2_isFirstTime(ScriptEnv &e) {
|
||||
OP_DEBUG_0("\t&& IS_FIRST_TIME()");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue