LAB: Rename CloseDataPtr pointers, some refactoring
This commit is contained in:
parent
0af299d3c7
commit
199fa254f9
12 changed files with 319 additions and 333 deletions
|
@ -301,10 +301,10 @@ CloseData *Resource::readCloseUps(uint16 depth, Common::File *file) {
|
|||
head = closeup;
|
||||
if (prev)
|
||||
prev->_nextCloseUp = closeup;
|
||||
closeup->x1 = file->readUint16LE();
|
||||
closeup->y1 = file->readUint16LE();
|
||||
closeup->x2 = file->readUint16LE();
|
||||
closeup->y2 = file->readUint16LE();
|
||||
closeup->_x1 = file->readUint16LE();
|
||||
closeup->_y1 = file->readUint16LE();
|
||||
closeup->_x2 = file->readUint16LE();
|
||||
closeup->_y2 = file->readUint16LE();
|
||||
closeup->_closeUpType = file->readSint16LE();
|
||||
closeup->_depth = depth;
|
||||
closeup->_graphicName = readString(file);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue