Skip to content

Commit 8a21648

Browse files
committed
fixed offset light indicator
1 parent 14f3080 commit 8a21648

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Indicator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void Indicator :: renderSelf(IPartitioner* partitioner, unsigned int flags) cons
3434
//glEnable(GL_POINT_SPRITE);
3535
glPointSize(24.0f);
3636
glBegin(GL_POINTS);
37-
glVertex3fv(glm::value_ptr(position(Space::WORLD)));
37+
glVertex3f(0.0f, 0.0f, 0.0f);
3838
glEnd();
3939

4040
//glDisable(GL_POINT_SPRITE);

0 commit comments

Comments
 (0)