From 7351c663fa3e92af79993eb8836a6fefbed3bdb2 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Fri, 15 Jan 2021 10:08:06 +0000 Subject: [PATCH] Update GetMonitorName and GetClipboardText to return UTF8 --- Raylib-cs/Raylib.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index 6ed7812..c309286 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -1009,7 +1009,7 @@ namespace Raylib_cs private static extern IntPtr INTERNAL_GetMonitorName(int monitor); public static string GetMonitorName(int monitor) { - return Marshal.PtrToStringAnsi(INTERNAL_GetMonitorName(monitor)); + return Marshal.PtrToStringUTF8(INTERNAL_GetMonitorName(monitor)); } // Get clipboard text content @@ -1017,7 +1017,7 @@ namespace Raylib_cs private static extern IntPtr INTERNAL_GetClipboardText(); public static string GetClipboardText() { - return Marshal.PtrToStringAnsi(INTERNAL_GetClipboardText()); + return Marshal.PtrToStringUTF8(INTERNAL_GetClipboardText()); } // Set clipboard text content