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

Fix utility typo

This commit is contained in:
ChrisDill 2023-12-26 10:03:57 +00:00
parent 47956acdd4
commit ff85d9ae83

View File

@ -419,7 +419,7 @@ public static unsafe partial class Raylib
public static Image GenImageText(int width, int height, string text)
{
using var str1 = text.ToUtf8Buffer();
return GenImageText(width, height, text);
return GenImageText(width, height, str1.AsPointer());
}
/// <summary>Create an image from text (default font)</summary>