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

Fix bug with DrawRectangleLinesEx

This commit is contained in:
ChrisDill 2022-02-15 08:37:56 +00:00
parent e57646a17e
commit 58da62baaa

View File

@ -935,7 +935,7 @@ namespace Raylib_cs
/// <summary>Draw rectangle outline with extended parameters</summary>
[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);
/// <summary>Draw rectangle with rounded edges</summary>
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]