Fix bug with DrawRectangleRoundedLines
This commit is contained in:
parent
5a41d48706
commit
e57646a17e
1 changed files with 1 additions and 1 deletions
|
|
@ -943,7 +943,7 @@ namespace Raylib_cs
|
|||
|
||||
/// <summary>Draw rectangle with rounded edges outline</summary>
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void DrawRectangleRoundedLines(Rectangle rec, float roundness, int segments, int lineThick, Color color);
|
||||
public static extern void DrawRectangleRoundedLines(Rectangle rec, float roundness, int segments, float lineThick, Color color);
|
||||
|
||||
/// <summary>Draw a color-filled triangle (vertex in counter-clockwise order!)</summary>
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
|
|
|
|||
Loading…
Reference in a new issue