From 0ea640acaa278d1422e9dcdf797d3eff69a64fb3 Mon Sep 17 00:00:00 2001 From: Diogo Gomes Date: Wed, 24 Aug 2022 17:50:30 +0100 Subject: [PATCH] Fixed LoadImageAnim frames argument. (#119) --- Raylib-cs/types/Raylib.Utils.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Raylib-cs/types/Raylib.Utils.cs b/Raylib-cs/types/Raylib.Utils.cs index 4d6ab6d..45d8d9f 100644 --- a/Raylib-cs/types/Raylib.Utils.cs +++ b/Raylib-cs/types/Raylib.Utils.cs @@ -106,10 +106,10 @@ namespace Raylib_cs } /// Load image sequence from file (frames appended to image.data) - public static Image LoadImageAnim(string fileName, int[] frames) + public static Image LoadImageAnim(string fileName, out int frames) { using var str1 = fileName.ToUTF8Buffer(); - fixed (int* p = frames) + fixed (int* p = &frames) { return LoadImageAnim(str1.AsPointer(), p); }