mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 11:39:49 -06:00
Remove warnings on MSVC
This commit is contained in:
@@ -239,7 +239,7 @@ void RenderableTrailTrajectory::update(const UpdateData& data) {
|
||||
unsigned int stopIndex = std::min(nextIndex, _numberOfVertices);
|
||||
|
||||
// Calculate all vertex positions
|
||||
for (int i = startIndex; i < stopIndex; ++i) {
|
||||
for (unsigned int i = startIndex; i < stopIndex; ++i) {
|
||||
const glm::vec3 p = _translation->position({
|
||||
{},
|
||||
Time(_start + i * _totalSampleInterval),
|
||||
|
||||
Reference in New Issue
Block a user