.
authorPatrik Gornicz <Gornicz.P@gmail.com>
Mon, 18 Aug 2008 22:37:40 +0000 (18:37 -0400)
committerPatrik Gornicz <Gornicz.P@gmail.com>
Mon, 18 Aug 2008 22:37:40 +0000 (18:37 -0400)
src/graphics/graphics.cpp

index 1130efb..d9e1dcc 100644 (file)
@@ -47,11 +47,11 @@ void graphics::clean()
 
 /// ***** Public Methods *****
 
-void graphics::drawCircle(float radius, const Vector2& vec, const float* color)
+void graphics::drawCircle(float radius, const Vector2& pos, const float* color)
 {
     glMatrixMode(GL_MODELVIEW);
     glLoadIdentity();
-    glTranslatef(vec.x, vec.y, -1);
+    glTranslatef(pos.x, pos.y, -1);
     glScalef(radius, radius, radius);
 
     if(color != NULL)