Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
durswd committed Dec 28, 2023
1 parent fc00d9c commit 3a908fb
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ class RibbonRendererBase : public ::Effekseer::RibbonRenderer, public ::Effeksee
int32_t customData1Count_ = 0;
int32_t customData2Count_ = 0;


template <typename VERTEX, bool FLIP_RGB>
void RenderSplines(const efkRibbonNodeParam& parameter, const ::Effekseer::SIMD::Mat44f& camera)
{
Expand Down Expand Up @@ -297,10 +296,10 @@ class RibbonRendererBase : public ::Effekseer::RibbonRenderer, public ::Effeksee
}
else
{
verteies[2] = verteies[0];
verteies[3] = verteies[1];
verteies[6] = verteies[4];
verteies[7] = verteies[5];
verteies[6] = verteies[0];
verteies[7] = verteies[1];
verteies[10] = verteies[4];
verteies[11] = verteies[5];
verteies += 8;
}

Expand Down

0 comments on commit 3a908fb

Please sign in to comment.