From 4ebb8294237c1d155de00ae47df2c44609752acb Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Fri, 24 Sep 2021 21:55:32 +0100 Subject: [PATCH] Fix missing argument in GetMonitorPosition --- Raylib-cs/Raylib.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index b48b527..bac698e 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -1002,7 +1002,7 @@ namespace Raylib_cs /// Get specified monitor position [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Vector2 GetMonitorPosition(); + public static extern Vector2 GetMonitorPosition(int monitor); /// Get primary monitor width [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]