mirror of
https://github.com/love2d/love.git
synced 2026-08-16 00:02:12 +02:00
Fix typo
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user