Increase size of _charsetData to 16 * 23 for HE games, fixes subtitle color glitches in Buzzy games

svn-id: r21460
This commit is contained in:
Travis Howell 2006-03-26 09:06:44 +00:00
parent d8004bff51
commit c1bd25617b
3 changed files with 5 additions and 4 deletions

View file

@ -708,9 +708,10 @@ void ScummEngine::saveOrLoad(Serializer *s) {
MKARRAY(ScummEngine, _resourceMapper[0], sleByte, 128, VER(8)),
MKARRAY(ScummEngine, _charsetColorMap[0], sleByte, 16, VER(8)),
// _charsetData grew from 10*16 to 15*16 bytes
// _charsetData grew from 10*16, to 15*16, to 23*16 bytes
MKARRAY_OLD(ScummEngine, _charsetData[0][0], sleByte, 10 * 16, VER(8), VER(9)),
MKARRAY(ScummEngine, _charsetData[0][0], sleByte, 15 * 16, VER(10)),
MKARRAY_OLD(ScummEngine, _charsetData[0][0], sleByte, 15 * 16, VER(10), VER(66)),
MKARRAY(ScummEngine, _charsetData[0][0], sleByte, 23 * 16, VER(10)),
MK_OBSOLETE(ScummEngine, _curExecScript, sleUint16, VER(8), VER(62)),