This commit is contained in:
muddmaker
2015-05-23 16:06:36 -07:00
parent fbc419fda6
commit 439cc65382
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1134,7 +1134,7 @@ void Graphics::circle(DrawMode mode, float x, float y, float radius, int points)
delete[] coords;
}
void Graphics::eclipse(DrawMode mode, float x, float y, float a, float b, int points)
void Graphics::ellipse(DrawMode mode, float x, float y, float a, float b, int points)
{
float two_pi = static_cast<float>(LOVE_M_PI * 2);
if (points <= 0) points = 1;