Meant C.ImageDrawCircleV not C.ImageDrawCircle in return
This commit is contained in:
parent
3f7580afaa
commit
574f3ebf35
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue