Explorar el Código

Comment out old stuff

Daniele Bartolini hace 12 años
padre
commit
12348a5468
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      engine/FPSSystem.cpp

+ 2 - 2
engine/FPSSystem.cpp

@@ -170,8 +170,8 @@ void FPSSystem::update(float dt)
 		m_camera->strafe_right(m_camera_speed * dt);
 	}
 
-	device()->renderer()->set_matrix(MT_VIEW, m_camera->view_matrix());
-	device()->renderer()->set_matrix(MT_PROJECTION, m_camera->projection_matrix());
+	// device()->renderer()->set_matrix(MT_VIEW, m_camera->view_matrix());
+	// device()->renderer()->set_matrix(MT_PROJECTION, m_camera->projection_matrix());
 }
 
 //-----------------------------------------------------------------------