From 4cfb534b74af130868efdfc9c8abaf381c404298 Mon Sep 17 00:00:00 2001 From: tiger tiger tiger Date: Tue, 7 Jul 2026 22:03:13 +0200 Subject: [PATCH] fix: Wrong signature of FrameBufferComplete --- Examples/Examples.csproj | 2 +- Raylib-cs/interop/Rlgl.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Examples/Examples.csproj b/Examples/Examples.csproj index 54386fe..56ea2d1 100644 --- a/Examples/Examples.csproj +++ b/Examples/Examples.csproj @@ -20,6 +20,6 @@ - + diff --git a/Raylib-cs/interop/Rlgl.cs b/Raylib-cs/interop/Rlgl.cs index 2a2d1ad..c65440d 100644 --- a/Raylib-cs/interop/Rlgl.cs +++ b/Raylib-cs/interop/Rlgl.cs @@ -821,7 +821,7 @@ public static unsafe partial class Rlgl /// Verify framebuffer is complete [LibraryImport(NativeLibName, EntryPoint = "rlFramebufferComplete")] [UnmanagedCallConv(CallConvs = [typeof(CallConvCdecl)])] - public static partial int FramebufferComplete(uint id); + public static partial CBool FramebufferComplete(uint id); /// Delete framebuffer from GPU [LibraryImport(NativeLibName, EntryPoint = "rlUnloadFramebuffer")]