mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
- Blood: Add interpolation repair for kQAVVDDOWN
(res_id: 109).
This commit is contained in:
parent
95878bcea1
commit
0172373650
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue