From 867f66d8c3f51c1d798c11437ae71cac8e855a51 Mon Sep 17 00:00:00 2001 From: JupiterRider <60042618+JupiterRider@users.noreply.github.com> Date: Fri, 6 Dec 2024 20:34:28 +0100 Subject: [PATCH] IsFontReady renamed --- Raylib-cs/interop/Raylib.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Raylib-cs/interop/Raylib.cs b/Raylib-cs/interop/Raylib.cs index fa1eb41..e0ace55 100644 --- a/Raylib-cs/interop/Raylib.cs +++ b/Raylib-cs/interop/Raylib.cs @@ -1987,9 +1987,9 @@ public static unsafe partial class Raylib int codepointCount ); - /// Check if a font is ready + /// Check if a font is valid (font data loaded, WARNING: GPU texture not checked) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern CBool IsFontReady(Font font); + public static extern CBool IsFontValid(Font font); /// Load font data for further use [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]