Index: trunk/src/formats/assimp_loader.cc
===================================================================
--- trunk/src/formats/assimp_loader.cc	(revision 365)
+++ trunk/src/formats/assimp_loader.cc	(revision 367)
@@ -7,5 +7,4 @@
 #include "nv/formats/assimp_loader.hh"
 #include <unordered_map>
-#include <glm/gtx/transform.hpp>
 #include "nv/io/std_stream.hh"
 #include "nv/gfx/mesh_creator.hh"
Index: trunk/src/formats/md2_loader.cc
===================================================================
--- trunk/src/formats/md2_loader.cc	(revision 365)
+++ trunk/src/formats/md2_loader.cc	(revision 367)
@@ -7,5 +7,4 @@
 #include "nv/formats/md2_loader.hh"
 
-#include <glm/gtc/constants.hpp>
 #include "nv/core/logging.hh"
 #include <cstring>
Index: trunk/src/formats/md3_loader.cc
===================================================================
--- trunk/src/formats/md3_loader.cc	(revision 365)
+++ trunk/src/formats/md3_loader.cc	(revision 367)
@@ -7,5 +7,4 @@
 #include "nv/formats/md3_loader.hh"
 
-#include <glm/gtc/constants.hpp>
 #include "nv/core/logging.hh"
 #include <cstring>
Index: trunk/src/formats/md5_loader.cc
===================================================================
--- trunk/src/formats/md5_loader.cc	(revision 365)
+++ trunk/src/formats/md5_loader.cc	(revision 367)
@@ -5,8 +5,6 @@
 #include "nv/formats/md5_loader.hh"
 
-#include <glm/gtc/constants.hpp>
 #include "nv/core/logging.hh"
 #include "nv/io/std_stream.hh"
-#include <cstring>
 
 using namespace nv;
@@ -14,10 +12,9 @@
 static void next_line( std::istream& stream )
 {
-	stream.ignore( std::numeric_limits<std::streamsize>::max(), '\n' );
+	stream.ignore( 1024*1024, '\n' );
 }
 
 static inline void discard( std::istream& stream, const std::string& token )
 {
-//	stream.ignore( std::numeric_limits<std::streamsize>::max(), ' ' );
 	std::string discarded;
 	stream >> discarded;
