From e57646a17ee2bab1585c759b65e2e16216dafdfd Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Tue, 15 Feb 2022 08:34:57 +0000 Subject: [PATCH] Fix bug with DrawRectangleRoundedLines --- Raylib-cs/interop/Raylib.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Raylib-cs/interop/Raylib.cs b/Raylib-cs/interop/Raylib.cs index 8f848c8..7a4e34f 100644 --- a/Raylib-cs/interop/Raylib.cs +++ b/Raylib-cs/interop/Raylib.cs @@ -943,7 +943,7 @@ namespace Raylib_cs /// Draw rectangle with rounded edges outline [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); /// Draw a color-filled triangle (vertex in counter-clockwise order!) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]