From 58da62baaae739b5452aff8fb7cb0db07062d044 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Tue, 15 Feb 2022 08:37:56 +0000 Subject: [PATCH] Fix bug with DrawRectangleLinesEx --- 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 7a4e34f..059065d 100644 --- a/Raylib-cs/interop/Raylib.cs +++ b/Raylib-cs/interop/Raylib.cs @@ -935,7 +935,7 @@ namespace Raylib_cs /// Draw rectangle outline with extended parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRectangleLinesEx(Rectangle rec, int lineThick, Color color); + public static extern void DrawRectangleLinesEx(Rectangle rec, float lineThick, Color color); /// Draw rectangle with rounded edges [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]