mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 14:58:10 -05:00
refactor: implement base x64 fastfile loading for iw4
This commit is contained in:
@ -382,8 +382,8 @@ namespace
|
||||
for (auto i = 0u; i < originalGraphKnotCount; i++)
|
||||
{
|
||||
const auto& commonKnot = graph.knots[i];
|
||||
originalGraphKnots[i][0] = static_cast<float>(commonKnot.x);
|
||||
originalGraphKnots[i][1] = static_cast<float>(commonKnot.y);
|
||||
originalGraphKnots[i].x = static_cast<float>(commonKnot.x);
|
||||
originalGraphKnots[i].y = static_cast<float>(commonKnot.y);
|
||||
}
|
||||
|
||||
graphKnots = originalGraphKnots;
|
||||
|
Reference in New Issue
Block a user