fix: no longer crashes when attempting to remove node from empty track

This was SVN commit r3478.
This commit is contained in:
pyrolink 2006-02-05 03:43:21 +00:00
parent 54101c169f
commit 2e92baf497

View File

@ -188,7 +188,6 @@ void TNSpline::RemoveNode(const int index)
{
if (NodeCount == 0 || index > NodeCount - 1 )
{
Node.pop_back();
return;
}
else