Browse Source

Fixed SpriteBatch file includes

Alex Szpakowski 12 years ago
parent
commit
77ab120424

+ 1 - 1
src/modules/graphics/opengl/SpriteBatch.cpp

@@ -21,7 +21,7 @@
 #include "SpriteBatch.h"
 
 // STD
-#include <iostream>
+#include <algorithm> // std::find
 
 // OpenGL
 #include "OpenGL.h"

+ 0 - 1
src/modules/graphics/opengl/SpriteBatch.h

@@ -28,7 +28,6 @@
 // LOVE
 #include "common/math.h"
 #include "common/Object.h"
-#include "common/Vector.h"
 #include "common/Matrix.h"
 #include "common/StringMap.h"
 #include "graphics/Drawable.h"