Watch
2
0
Fork
You've already forked raylib-cs
0

Fix missing argument in GetMonitorPosition

This commit is contained in:
Rgebee 2021-09-24 21:55:32 +01:00
commit 4ebb829423

View file

@ -1002,7 +1002,7 @@ namespace Raylib_cs
/// <summary>Get specified monitor position</summary> /// <summary>Get specified monitor position</summary>
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector2 GetMonitorPosition(); public static extern Vector2 GetMonitorPosition(int monitor);
/// <summary>Get primary monitor width</summary> /// <summary>Get primary monitor width</summary>
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]