mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
- Blood: Add interpolation repair for kQAVBUNDOWN2
(res_id: 19).
This commit is contained in:
parent
cb62692e37
commit
da95af0c04
1 changed files with 14 additions and 0 deletions
|
@ -500,6 +500,20 @@ static void qavRepairTileData(QAV* pQAV)
|
|||
}
|
||||
}
|
||||
break;
|
||||
case kQAVBUNDOWN2:
|
||||
// BUNDOWN2 has some tile index swaps that require handling.
|
||||
// For frames 3 and 4, move tile indices 1 and 2 into 2 and 3, and disable original index of 1.
|
||||
for (i = 3; i < 5; i++)
|
||||
{
|
||||
pQAV->frames[i].tiles[3] = pQAV->frames[i].tiles[2];
|
||||
pQAV->frames[i].tiles[2] = pQAV->frames[i].tiles[1];
|
||||
pQAV->frames[i].tiles[1].picnum = -1;
|
||||
}
|
||||
|
||||
// For frame 5, move tile index 1 to 3 and disable original index of 1.
|
||||
pQAV->frames[5].tiles[3] = pQAV->frames[5].tiles[1];
|
||||
pQAV->frames[5].tiles[1].picnum = -1;
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue