From a5ddc530c2d9ce9d3e4f115cc0bc132d6471287b Mon Sep 17 00:00:00 2001 From: thefiddler Date: Wed, 30 Apr 2014 13:36:16 +0200 Subject: [PATCH] [SDL] Fixed custom MouseCursor --- Source/OpenTK/Platform/SDL2/Sdl2NativeWindow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/OpenTK/Platform/SDL2/Sdl2NativeWindow.cs b/Source/OpenTK/Platform/SDL2/Sdl2NativeWindow.cs index adb259fe..2506e138 100644 --- a/Source/OpenTK/Platform/SDL2/Sdl2NativeWindow.cs +++ b/Source/OpenTK/Platform/SDL2/Sdl2NativeWindow.cs @@ -502,10 +502,10 @@ namespace OpenTK.Platform.SDL2 value.Height, 32, value.Width * 4, - 0xff000000, 0x00ff0000, 0x0000ff00, - 0x000000ff); + 0x000000ff, + 0xff000000); if (cursor_surface == IntPtr.Zero) {