From df7d4f9508ea66415f3edf840ae88f55ee83cfd6 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 6 Jan 2008 02:35:57 +0000 Subject: [PATCH] Fixed GetRawInputData call. --- Source/OpenTK/Platform/Windows/WinRawInput.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/OpenTK/Platform/Windows/WinRawInput.cs b/Source/OpenTK/Platform/Windows/WinRawInput.cs index e26d6e71..761750c6 100644 --- a/Source/OpenTK/Platform/Windows/WinRawInput.cs +++ b/Source/OpenTK/Platform/Windows/WinRawInput.cs @@ -86,7 +86,7 @@ namespace OpenTK.Platform.Windows // throw new ApplicationException("Critical error when processing raw windows input."); //} if (size == Functions.GetRawInputData(msg.LParam, GetRawInputDataEnum.INPUT, - data, ref size, API.RawInputHeaderSize)) + out data, ref size, API.RawInputHeaderSize)) { switch (data.Header.Type) {