- Blood: Add interpolation repair for kQAVVDDOWN (res_id: 109).

This commit is contained in:
Mitchell Richters 2021-08-13 16:42:22 +10:00
parent 95878bcea1
commit 0172373650

View file

@ -1255,6 +1255,12 @@ static void qavRepairTileData(QAV* pQAV)
pQAV->frames[i].tiles[0] = backup;
}
break;
case kQAVVDDOWN:
// VDDOWN requires tile indices on the first frame to be swapped around.
backup = pQAV->frames[0].tiles[0];
pQAV->frames[0].tiles[0] = pQAV->frames[0].tiles[1];
pQAV->frames[0].tiles[1] = backup;
break;
default:
return;
}