More cleanups, transports still not working. working on a fix.

This commit is contained in:
hondacrx
2022-06-21 15:43:35 -04:00
parent 63cbd18350
commit d42733e3b4
5 changed files with 11 additions and 6 deletions
+1 -1
View File
@@ -270,7 +270,7 @@ namespace Game.Movement
T length_ = t * (dynamic)Length();
index = ComputeIndexInBounds(length_);
//ASSERT(index < index_hi);
u = (length_ - Length(index)) / (float)Length(index, index + 1);
u = (float)(length_ - Length(index)) / (float)Length(index, index + 1);
}
int ComputeIndexInBounds(T length_)