diff options
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | src/main.cpp | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -16,4 +16,5 @@ ideas - show framerate in gui credit to iamn1ck for opengl and quadtree + credit to dakjos for assistance with theorycrafting the idea diff --git a/src/main.cpp b/src/main.cpp index 1cec997..d5a192d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -46,7 +46,6 @@ int main() shader.Bind();
_spriteBatch.begin();
- printf("%d\n",L.creatures.size());
for(std::list<Creature>::iterator it = L.creatures.begin(); it != L.creatures.end(); it++)
_spriteBatch.draw(it->getGFXD());
|