mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
Update GetMonitorName and GetClipboardText to return UTF8
This commit is contained in:
parent
8fa8d74156
commit
7351c663fa
@ -1009,7 +1009,7 @@ namespace Raylib_cs
|
|||||||
private static extern IntPtr INTERNAL_GetMonitorName(int monitor);
|
private static extern IntPtr INTERNAL_GetMonitorName(int monitor);
|
||||||
public static string 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
|
// Get clipboard text content
|
||||||
@ -1017,7 +1017,7 @@ namespace Raylib_cs
|
|||||||
private static extern IntPtr INTERNAL_GetClipboardText();
|
private static extern IntPtr INTERNAL_GetClipboardText();
|
||||||
public static string GetClipboardText()
|
public static string GetClipboardText()
|
||||||
{
|
{
|
||||||
return Marshal.PtrToStringAnsi(INTERNAL_GetClipboardText());
|
return Marshal.PtrToStringUTF8(INTERNAL_GetClipboardText());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set clipboard text content
|
// Set clipboard text content
|
||||||
|
Loading…
x
Reference in New Issue
Block a user