mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-04-25 00:11:03 +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;
|
pQAV->frames[i].tiles[0] = backup;
|
||||||
}
|
}
|
||||||
break;
|
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:
|
default:
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue