From 574f3ebf35f3140b1c4047f302680266b80abb04 Mon Sep 17 00:00:00 2001 From: Luke Wilson Date: Sun, 5 Sep 2021 20:06:03 -0500 Subject: [PATCH] Meant C.ImageDrawCircleV not C.ImageDrawCircle in return --- raylib/textures.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raylib/textures.go b/raylib/textures.go index c95a98d..c16cbfe 100644 --- a/raylib/textures.go +++ b/raylib/textures.go @@ -388,7 +388,7 @@ func ImageDrawCircleV(dst *Image, center Vector2, radius int32, color Color) { ccenter := center.cptr() cradius := (C.int)(radius) ccolor := color.cptr() - C.ImageDrawCircle(cdst, *ccenter, cradius, *ccolor) + C.ImageDrawCircleV(cdst, *ccenter, cradius, *ccolor) } // ImageDrawPixel - Draw pixel within an image