renamed Scumm::charset -> Scumm::_charset
svn-id: r6119
This commit is contained in:
parent
65ee9da743
commit
fef84f3737
10 changed files with 173 additions and 164 deletions
|
@ -358,7 +358,7 @@ void Scumm::saveOrLoad(Serializer *s, uint32 savegameVersion)
|
|||
MKARRAY(Scumm, vm.localvar[0][0], sleUint16, NUM_SCRIPT_SLOT * 17, VER_V9),
|
||||
|
||||
MKARRAY(Scumm, _resourceMapper[0], sleByte, 128, VER_V8),
|
||||
MKARRAY(Scumm, charset._colorMap[0], sleByte, 16, VER_V8),
|
||||
MKARRAY(Scumm, _charset._colorMap[0], sleByte, 16, VER_V8),
|
||||
|
||||
// _charsetData grew from 10*16 to 15*16 bytes
|
||||
MKARRAY_OLD(Scumm, _charsetData[0][0], sleByte, 10 * 16, VER_V8, VER_V9),
|
||||
|
@ -386,8 +386,8 @@ void Scumm::saveOrLoad(Serializer *s, uint32 savegameVersion)
|
|||
MKLINE(Scumm, _charsetColor, sleByte, VER_V8),
|
||||
|
||||
// charset._bufPos was changed from byte to int
|
||||
MKLINE_OLD(Scumm, charset._bufPos, sleByte, VER_V8, VER_V9),
|
||||
MKLINE(Scumm, charset._bufPos, sleInt16, VER_V10),
|
||||
MKLINE_OLD(Scumm, _charset._bufPos, sleByte, VER_V8, VER_V9),
|
||||
MKLINE(Scumm, _charset._bufPos, sleInt16, VER_V10),
|
||||
|
||||
MKLINE(Scumm, _haveMsg, sleByte, VER_V8),
|
||||
MKLINE(Scumm, _useTalkAnims, sleByte, VER_V8),
|
||||
|
@ -429,7 +429,7 @@ void Scumm::saveOrLoad(Serializer *s, uint32 savegameVersion)
|
|||
|
||||
MKARRAY(Scumm, _proc_special_palette[0], sleByte, 256, VER_V8),
|
||||
|
||||
MKARRAY(Scumm, charset._buffer[0], sleByte, 256, VER_V8),
|
||||
MKARRAY(Scumm, _charset._buffer[0], sleByte, 256, VER_V8),
|
||||
|
||||
MKLINE(Scumm, _egoPositioned, sleByte, VER_V8),
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue