2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Fix bug with DrawRectangleRoundedLines

This commit is contained in:
ChrisDill 2022-02-15 08:34:57 +00:00
parent 5a41d48706
commit e57646a17e

View File

@ -943,7 +943,7 @@ namespace Raylib_cs
/// <summary>Draw rectangle with rounded edges outline</summary> /// <summary>Draw rectangle with rounded edges outline</summary>
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [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> /// <summary>Draw a color-filled triangle (vertex in counter-clockwise order!)</summary>
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]