From 8ea7a93c79ff1ced1b6ed9504a7411f02bceea16 Mon Sep 17 00:00:00 2001
From: JupiterRider <60042618+JupiterRider@users.noreply.github.com>
Date: Fri, 6 Dec 2024 20:59:30 +0100
Subject: [PATCH] IsSoundReady 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 a6d34cb..16f46db 100644
--- a/Raylib-cs/interop/Raylib.cs
+++ b/Raylib-cs/interop/Raylib.cs
@@ -2714,9 +2714,9 @@ public static unsafe partial class Raylib
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Sound LoadSoundAlias(Sound source);
- /// Checks if a sound is ready
+ /// Checks if a sound is valid (data loaded and buffers initialized)
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern CBool IsSoundReady(Sound sound);
+ public static extern CBool IsSoundValid(Sound sound);
/// Update sound buffer with new data
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]