mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-27 20:20:40 +00:00
- Blood: Mark kQAVPFORK
(res_id: 2) as being loopable.
This commit is contained in:
parent
e273b93d12
commit
6d06f002bc
1 changed files with 8 additions and 0 deletions
|
@ -152,6 +152,14 @@ void qavBuildInterpProps(QAV* const pQAV)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case kQAVPFORK:
|
||||||
|
{
|
||||||
|
QAVInterpProps interp{};
|
||||||
|
interp.flags |= true << kQAVIsLoopable;
|
||||||
|
interp.PrevTileFinder = qavGetInterpType("interpolate-index");
|
||||||
|
qavInterpProps.Insert(pQAV->res_id, std::move(interp));
|
||||||
|
break;
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
QAVInterpProps interp{};
|
QAVInterpProps interp{};
|
||||||
|
|
Loading…
Reference in a new issue